我有一个由json对象组成的数组,如:
defaultProperties: Array[2]
0:Object
name: "test1"
desc: "description of test1"
1:Object
name: "test2"
desc: "description of test2"
我有另一个JSON对象,它是许多对象的集合,如下所示:
dataset['Information'] -> Object
test1: Object
test2: Object
test3:Object
我需要检查数据集['信息']中是否存在defaultProperties中的test1和test2。如果没有我必须存储test1和test2否则跳过它。
我尝试了以下方式。但似乎不正确。你有什么想法怎么做?
var informationJson = dataset['Information'];
for (var index = 0; index < informationJson .length; ++index) {
for(var i =0;i<defaultProperties.length;i++)
{
if(informationJson [index] == defaultProperties[i].name){
break;
}
else
{//store it}
}
}
答案 0 :(得分:0)
假设dataset['Information']
是一个哈希(对象),这样的东西可能会起作用:
var informationJson = dataset['Information'];
for (var i=0; i<defaultProperties.length; i++) {
if (informationJson.hasOwnProperty(defaultProperties[i].name)) {
continue;
} else {
//store it
}
}