“超出最大调用堆栈大小”

时间:2015-08-01 20:13:37

标签: angularjs routing

我在我的网站上使用这个简单的脚本但是在控制台中抛出错误“超出了最大调用堆栈大小”

var myapp = angular.module("myApp", ['ngRoute']);
myapp.config(['$routeProvider', '$locationProvider', function ($routeProvider, $locationProvider) { 
   //$locationProvider.html5mode(true);
    $routeProvider
    .when('/', {
        templateUrl: 'index.html',
    }).when('/contact', 
        templateUrl: 'contact.html',
    }).when('/google', {
         templateUrl: 'http://www.google.co.in'
    }).otherwise({
        redirectTo: '/'
    });
}]);

1 个答案:

答案 0 :(得分:5)

我认为你误解了Angular中的路由是什么。

首先,关于您的问题,我假设您从index.html调用此代码,因此路由将连续循环到index.html,因为"否则()"规则将加载' /'将无限加载index.html的规则(导致调用堆栈溢出)。

其次,路由应该将部分HTML加载到ngView指令中,而不是将用户发送到不同的URL。请阅读https://docs.angularjs.org/tutorial/step_07