我正在尝试在 JSON 数据中搜索对象的属性。
但是我遇到了一个类似uncaught type error:length is not defined
jQuery 的错误。我的 JSON 看起来像这样:
var list = {
meta: {
limit: 1000,
offset: 0,
previous: null,
total_count: 1797
},
objects: [{
id: 1215,
location: {
id: 1306,
name: "Austin",
parent_id: 43,
type: "City",
},
name: "2ND Street District",
}]
};
$.each(list.objects.location, function (i, v) {
if (v.id.search(new RegExp(/1036/i)) != -1) {
alert(v.name);
return;
}
});
给我关于这个问题的任何想法。