我使用$ http.get
加载一些数据$http.get('toDOTasks.json')
.success(function (response) {
$scope.tasks = response;
});
然后我有:
<div ng-repeat="task in tasks| filter:search | orderBy: orderType() | limitTo: show" class="row">
并且它在firefox中有效,但是当我尝试使用chorome或IE时,它不会有什么问题?