AngularJs路由提供商与外部网站无限循环

时间:2016-09-14 19:24:33

标签: angularjs angular-ui-router route-provider

我在我的网站www.xxxxx.com/blog中包含了ghost博客。

当我访问博客网址时,由于我在下面给出的路由提供程序,我的应用程序因无法循环而崩溃。

.when('/',{
    templateUrl:"partials/home"
})

.when('/home',{
    templateUrl:"partials/home"
})

.when('/blog',{
    templateUrl:"/blog",    
})

阻止它进入无限循环的最佳方法是什么。

感谢您的帮助!

1 个答案:

答案 0 :(得分:0)

您的templateUrl /blog与页面路径相同。

我怀疑你希望它是partials/blog