使用 ng-view 和
myApp.config(['$routeProvider', function($routeProvider) {
$routeProvider.
when('/', {
templateUrl: '/partials/home',
controller: 'homePage'
}).
otherwise({redirectTo: '/login'});
}]);
一切正常,除了显示/#/
在每个地址之前的 URL。你如何摆脱它?