遍历对象文本中的键并返回键名。

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.
  1. for (var key in mainObject){
  2. if(key && mainObject.hasOwnProperty(key) && ($.inArray(key, testAgainstThisArray) !== -1 ) && mainObject[key] !== null ) {
  3. console.log(key);
  4. }
  5. }

以上是关于遍历对象文本中的键并返回键名。的主要内容,如果未能解决你的问题,请参考以下文章

SwiftUI 使用 List 和 Foreach 遍历字典中的键并创建列表视图

ES5对象新增的方法

数组的九种遍历方法

ES6对象的新增方法

Java 8 Stream 按键过滤对象列表。排除列表中的键并获取字符串

array_keys — 返回数组中部分的或所有的键名