我在 Angular 中介绍了它的教程“Phonecat”。针对本教程,我想构建一个简单的应用程序,其中包含只有一个 json 的列表和详细视图,包含所有信息。
列表视图(显示 json 的完整内容)工作正常,但我很难为详细视图设置我的 Angular 服务。我正在使用 XHR 方法:
控制器.js:
function PlaygroundDetailCtrl($scope, Playground) {
$scope.playgrounds = Playground.query();
}
服务.js
angular.module('playgroundcatServices', ['ngResource']).
factory('Playground', function($resource){
return $resource('playgrounds/playgrounds.json', {}, {
query: {method:'GET', isArray:true}
});
});
游乐场.json
[
{
"id:" 1,
"properties": "true"
"lat": "51.347789"
"lon": "12.232234"
},
{
"id:" 2,
"properties": "false"
"lat": "51.347789"
"lon": "12.766667"
}
]
我希望 Angular 只显示一个条目 (id:1) 及其属性。最聪明的方法是什么:再次显示然后过滤?
我难住了。