在AngularJS中重定向之前获取在浏览器中输入的URL?

时间:2016-12-16 23:30:34

标签: angularjs angular-ui-router angular-http-interceptors

我正在尝试获取最初在浏览器中输入的URL的参数。但有角度的“重定向”我自动重定向到'/'

例如,我输入以下网址:http://localhost:9080/#/test?param1=en&param2=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'
            }
        }
    });

为什么?有没有办法获得原始网址?

1 个答案:

答案 0 :(得分:2)

使用:

document.URL;

或者

window.location.href