朋友,我是angular JS的新手,我想使用angular Route,但是当我单击#/ home时,它给了我一些奇怪的URL http://127.0.0.1:3000/#!/home#%2Fhome
但是默认情况下,否则条件工作正常http://127.0.0.1:3000/#!/home
app.config(['$routeProvider', function($routeProvider){
$routeProvider
.when('/home', {
templateUrl: 'views/home.html'
})
.when('/list', {
templateUrl: 'Views/listing.html',
controller: 'mycontroller'
}).otherwise({
redirectTo: '/home'
})
}]);
答案 0 :(得分:0)
您可以尝试
使用28.0.0-alpha1
$locationProvider