所以我对 Angular 还是很陌生,我想做的是获取一个从 RESTful 调用中获得的 json 集合,并循环遍历每个集合以显示它们的值,同时将其指定的 id 关联到一个 href 中。
下面你会发现我尝试过的:
<div class="span2">
<!--Sidebar content-->
Search: <input ng-model="query">
Sort by:
<select ng-model="orderProp">
<option value="name">Alphabetical</option>
<!--option value="age">Newest</option>
<option value="-age">Oldest</option-->
</select>
</div>
<div class="span10">
<!--Body content-->
<ul class="documents">
<li ng-repeat="document in documents | orderBy:orderProp" class="thumbnail">
<a href="#/rest/{{document.document_id}}">{{document.title}}</a>
</li>
</ul>
<pre>{{ documents | json }}</pre>
</div>
Shttp 调用:
function DocListCtrl($scope, $http)
{
console.log('getting documents data');
$http.get('/*RESTful call here*/').success(function(data)
{
$scope.documents = data;
});
$scope.orderProp = 'name';
}
当我运行页面时,使用
<pre>{{ documents | json }}</pre>
但 ng-repeat 未能实施。
编辑
这是我正在使用的 Json 的一个示例。
{
"next": {},
"items": [
{
"document_id": 3177554002,
"title": "title of some item"
}
]
}
ng-repeat 调用未能按我希望的方式列出我的数据,我到底做错了什么?
谢谢您的帮助