我使用nodeJS作为中间件,并在UI中使用angularJS并进行路由。这是一个SPA应用程序,但当前路由在尝试加载模板时无法获得404错误。
应用程序文件夹结构如下:
以下代码用于路由:
mainApp.config(['$routeProvider', function($routeProvider) {
$routeProvider.
when('/addStudent', {
templateUrl: 'templates/addStudent.html',
}).
when('/viewStudent', {
templateUrl: 'templates/viewStudent.html',
}).
otherwise({
redirectTo: '#'
});
}]);