我正在尝试获取最初在浏览器中输入的URL的参数。但有角度的“重定向”我自动重定向到'/'
例如,我输入以下网址:http://localhost:9080/#/test?param1=en¶m2=55
但我最终得到:http://localhost:9080/#/
var config = function (AppConfig, $urlRouterProvider) {
'ngInject';
$httpProvider.interceptors.push(function ($q, $location) {
return {
'request': function (config) {
var params = $location.search(); //here : $location is already returning the wrong URL : http://localhost:9080/#/
return config;
}
}
});
};
这是我唯一的路线:
$stateProvider.state('test', {
url: '/',
views: {
'testView@' : {
templateUrl: '/app/test/test.html',
controller: 'test.controller',
controllerAs: 'testVM'
}
}
});
为什么?有没有办法获得原始网址?
答案 0 :(得分:2)
使用:
document.URL;
或者
window.location.href