在哪里可以找到有关在新的角度1.4路由器中激活html5模式的任何文档。
中没有任何内容答案 0 :(得分:1)
https://docs.angularjs.org/guide/$location
(function(){
'use strict';
var app = angular.module('app', []);
app.config(['$locationProvider', function($locationProvider) {
$locationProvider.html5Mode(true);
}]);
})();