Angular ngRoute - 如果手动输入url,则无法获取页面

时间:2015-04-16 11:13:51

标签: angularjs ngroute

我是AngularJS的初学者并且有以下问题。我正在玩ngRoute模块,到目前为止这是我的代码:

HTML:

<nav ng-controller="navController as nav">
    <ul>
        <li ng-repeat="item in navItems">
            <a href="{{ item.url }}">{{ item.name }}</a>
        </li>
    </ul>
</nav>


<div id="main">
    <div ng-view></div>
</div>

app.js

(function(window) {

    var app = angular.module('app', ['ngRoute']);

    app.config(['$routeProvider', '$locationProvider', function($routeProvider, $locationProvider) {
        $routeProvider
            .when('/', {
                templateUrl : 'pages/home.html',
                controller  : 'mainController'
            })
            .when('/contact', {
                templateUrl : 'pages/contact.html',
                controller  : 'contactController'
            });

        if (window.history && window.history.pushState) {
            $locationProvider.html5Mode(true);
        }
    }]);


    app.controller('mainController', ['$scope', function($scope) {
        $scope.message = 'Hello from home page';
    }]);


    app.controller('contactController', ['$scope', function($scope) {
        $scope.message = 'Hello from contact page';
    }]);

    app.controller('navController', ['$scope', function($scope) {
        $scope.navItems = [
            { name: 'Home', url: '/' },
            { name: 'Contact', url: '/contact' }
        ];
    }]);

})(window);

它工作正常。 Angular渲染菜单,当我点击链接时,它会显示我想要的页面。但除以下情况外。当它显示主页(网址:http://localhost:3000)并且我手动添加到网址“/ contact”时,我得到空白页面错误“无法获取/联系”。有人可以解释一下为什么会发生这种情况,我该如何解决?我将不胜感激任何帮助。感谢。

1 个答案:

答案 0 :(得分:-1)

事实上,非HTML5浏览器需要#(#标签)。

否则他们只会在上述href对服务器进行HTTP调用。 #是一个旧的浏览器短路,它不会触发请求,这允许许多js框架在其上构建自己的客户端重新路由。

您可以使用$ locationProvider.html5Mode(true)告诉angular使用HTML5策略(如果可用)。

此处支持HTML5策略的浏览器列表:http://caniuse.com/#feat=history

来源:AngularJS routing without the hash '#'