AngularJS ng-repeat在firefox上运行但在chrome和IE中没有?

时间:2015-10-02 05:41:37

标签: angularjs google-chrome firefox

我使用$ 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时,它不会有什么问题?

1 个答案:

答案 0 :(得分:0)

您正在使用的角度版本。 在这种情况下,您可以使用1.2版尝试它,因为如果更兼容。请参阅angular docs Angular Docs