当我尝试访问与主模板文件夹不在同一文件夹中的模板文件时,出现拒绝访问错误。如何解决这个问题?我的代码是这样的:
disputairApp.config(['$routeProvider',
function($routeProvider) {
$routeProvider.
when('/dichtgetikt/disputair/test2/', {
templateUrl: 'test/test.html',
controller: 'userCtrl'
}).
otherwise({
templateUrl: 'template.html',
//controller: 'userCtrl'
});
}
]);
“否则”确实有效,但第一个没有。
答案 0 :(得分:0)
当您尝试转到URL时,是否使用了哈希?
/#/ dichtgetikt / disputair / TEST2 /
请参阅http://docs.angularjs.org/guide/dev_guide.services。$ location并查看配置部分以了解选项。
当我使用“否则”时,我会这样做。
otherwise({redirectTo: '/whatever'});
的Darryl