(function(){
'use strict';
angular
.module('myNinjaApp.user')
.config(config)
config.$inject = ['$routeProvider']
function config($routeProvider)
{
$routeProvider
.when('/user/home',{
templateUrl:'./views/home.html'
}).when('/user/directory',{
templateUrl:'./views/directory.html'
}).otherwise({
redirectTo:'/user/home'
})
}
})();
文件home.html
和directory.html
位于同一路径中,但位于文件夹视图中。
但是错误无法加载资源。
答案 0 :(得分:0)
路径不包含点(。),路径将为templateUrl: 'modules/users/views/home.html'