路由不在angularJS中工作得到404错误

时间:2016-05-21 14:41:48

标签: javascript angularjs node.js express

我使用nodeJS作为中间件,并在UI中使用angularJS并进行路由。这是一个SPA应用程序,但当前路由在尝试加载模板时无法获得404错误。

应用程序文件夹结构如下:

Folder structure

以下代码用于路由:

mainApp.config(['$routeProvider', function($routeProvider) {
    $routeProvider.
    when('/addStudent', {
        templateUrl: 'templates/addStudent.html',
    }).
    when('/viewStudent', {
        templateUrl: 'templates/viewStudent.html',
    }).
    otherwise({
        redirectTo: '#'
    });
}]);

0 个答案:

没有答案