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
。如何獲取角度來維護查詢字符串?
有沒有辦法爲所有路線做一次? @Zakaria – user3795309
這對ngComponentRouter和angular 1.6不起作用 – user3795309