Angular app加载,然后在Firefox中冻结

时间:2013-05-25 09:36:36

标签: angularjs

没有抛出任何错误,该应用可在Chrome中使用。

/* app.js */
var app = app || angular.module('app', []);
app.config(['$routeProvider', function($routeProvider){
    $routeProvider.
        when('/look', {templateUrl: 'partials/look.html', controller: 'DataCtrl'});
}]);

/* Controllers */
var app = app || angular.module('app', []);
app.controller('DataCtrl', ['$scope', '$http', function($scope, $http){
    $scope.orderProp = 'id';
    $http.get('data/data.json').success(function(data){
        $scope.data = data;
    });
}]);

任何可能出错的提示?如果需要更多数据,请告诉我。

0 个答案:

没有答案