1

我的应用程序设置$routeProvider为:

angular.module('myApp', [])

    .config(['$routeProvider', function($routeProvider){
        $routeProvider
            .when('/authorisation', { template: 'templates/authorisation.html', controller: AuthenticationController})
            .otherwise('templates/404.html');
    }]);

index.html的是:

<!DOCTYPE html>
<html lang="en" ng-app="myApp">
<head>
    <title>Gift Cloud Dash</title>
    <script src="lib\angular\angular.js"></script>

    <!-- App config -->
    <script src="js\app.js"></script>

    <!-- Import controllers -->
    <script src="js\controllers\authentication-controller.js"></script>
</head>
<body>
<div>
    <a href="#/authorisation">Authorisation</a>
</div>
<div ng-view></div>
</body>
</html>

当我打开索引页面时,我会看到超链接,但是当我单击它时,会显示文件路径,而不是在<div ng-view></div>.

角度显示资源路径。

4

1 回答 1

4

修复了它,我会把它留在这里以防其他人出现相同的症状:

我的路由配置中的语法错误:应该是:

angular.module('myApp', [])

    .config(['$routeProvider', function($routeProvider){
        $routeProvider
            .when('/authorisation', { templateUrl: 'templates/authorisation.html', controller: AuthenticationController})
            .otherwise({redirectTo: 'templates/404.html'});
    }]);
于 2013-08-18T20:50:00.583 回答