1

这是一个示例模型:

$scope.people=
   [
{"id":1, "name":"bob", "pets":[
    {"id":1, "name":"Jaco", "type":"parrot"},
    {"id":2, "name":"coco", "type":"parrot"},
    {"id":3, "name":"pluto", "type":"dog"}
    ]},
{"id":2, "name": "jason", "pets":[
    {"id":4, "name":"coco", "type":"cat"}
]},
{"id":3, "name": "kurt", "pets":[
     {"id":5, "name":"nemo", "type":"turtle"},
     {"id":6, "name":"grnx", "type":"lynx"}
]}
];

是否有 angularjs/javascript 函数或最佳实践来检索 bob 的 id,或找到动物的主人,或使用键/值模式提取一条宠物记录?

我想我可以编写自己的函数来查看模型(递归或使用 for 循环),但如果它们存在,我宁愿使用更高级别的方法。

4

1 回答 1

2

您会发现查询 JS 数据结构有多种选择。我发现linq.js非常好。您的每个示例都可以用一行 linq.js 代码完成。

//Get Id
return Enumerable.From($scope.people).First('$.name == "' + name + '"' ).id;            
//Pet owners
return Enumerable.From($scope.people).Where('$.pets.length > 0').Select("$.name").ToArray();            
//Pet Search
return Enumerable.From($scope.people).SelectMany('$.pets').Where('$.' + key + ' == "' + value + '"').Select('$.name').ToArray()   
于 2013-06-14T06:37:42.707 回答