遍历对象文本中的键并返回键名。
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了遍历对象文本中的键并返回键名。相关的知识,希望对你有一定的参考价值。
Returns the key name in mainObject if it's a key, and hasOwnProperty of key (to rule out the prototype object. Then it also checks if the key is listed in an array using a jquery function and also tests if it's null.
for (var key in mainObject){ if(key && mainObject.hasOwnProperty(key) && ($.inArray(key, testAgainstThisArray) !== -1 ) && mainObject[key] !== null ) { console.log(key); } }
以上是关于遍历对象文本中的键并返回键名。的主要内容,如果未能解决你的问题,请参考以下文章
SwiftUI 使用 List 和 Foreach 遍历字典中的键并创建列表视图