2017-07-27 67 views
0

我有一個路線定義爲Angularjs剝離出來的查詢字符串

application.component('myApp', { 
    template: '<ng-outlet></ng-outlet>', 
    $routeConfig: [ 
    {path: '/person', name: 'Person', component: 'person', useAsDefault: true}, 
    ], 
    bindings: {$router: '<'} 
}); 

每當去localhost3000/person?eye=blue它重定向到localhost:3000/person。如何獲取角度來維護查詢字符串?

回答

0

在您的路由配置中添加preserveQueryParams

+0

有沒有辦法爲所有路線做一次? @Zakaria – user3795309

+0

這對ngComponentRouter和angular 1.6不起作用 – user3795309