我的路线定义为
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 :(得分:0)
在路线配置中添加preserveQueryParams
。