无法加载资源 - 404 Angularjs

时间:2018-03-21 09:56:11

标签: angularjs

(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.htmldirectory.html位于同一路径中,但位于文件夹视图中。 但是错误无法加载资源。

1 个答案:

答案 0 :(得分:0)

路径不包含点(。),路径将为templateUrl: 'modules/users/views/home.html'