与brnwdrng的问题类似,我正在寻找一种搜索类似于JSON的对象的方法。
假设我对象的结构是这样的:
TestObj = {
"Categories": [{
"Products": [{
"id": "a01",
"name": "Pine",
"description": "Short description of pine."
},
{
"id": "a02",
"name": "Birch",
"description": "Short description of birch."
},
{
"id": "a03",
"name": "Poplar",
"description": "Short description of poplar."
}],
"id": "A",
"title": "Cheap",
"description": "Short description of category A."
},
{
"Product": [{
"id": "b01",
"name": "Maple",
"description": "Short description of maple."
},
{
"id": "b02",
"name": "Oak",
"description": "Short description of oak."
},
{
"id": "b03",
"name": "Bamboo",
"description": "Short description of bamboo."
}],
"id": "B",
"title": "Moderate",
"description": "Short description of category B."
}]
};
我想获得一个id =“ A”的对象。
我已经尝试过各种方法,例如:
$(TestObj.find(":id='A'"))
但似乎没有任何效果。
任何人都可以想到一种无需使用“每个”即可根据某些条件检索项目的方法吗?