新Angular路由器中的HTML5模式

时间:2015-06-20 13:19:39

标签: angular

在哪里可以找到有关在新的角度1.4路由器中激活html5模式的任何文档。

Angular Router gihtub repoofficial docs

中没有任何内容

1 个答案:

答案 0 :(得分:1)

https://docs.angularjs.org/guide/$location

(function(){
    'use strict';

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

    app.config(['$locationProvider', function($locationProvider) {
        $locationProvider.html5Mode(true);
    }]);

})();