我在我的应用中使用查询参数,我希望在导航和更新设置时保留/更新。通过执行以下操作,我可以毫无问题地添加参数。
onNavigate() {
this.router.navigate(['reports'], {queryParams: {'report': this.chart}, preserveQueryParams:true});
}
但是我希望能够更改报告参数并在我的应用程序中将新的参数添加到网址中。
使用preserveQueryParams: true
使我的参数只读。我希望能够更新当前的params并添加新的params而不会丢失任何东西,除非我清除它们。
如何在不丢失当前设置的参数的情况下执行此操作?
答案 0 :(得分:0)
我猜preserveQueryParams
并不意味着代表应用程序附加/更新queryParams
。
您必须编写逻辑以获取现有查询参数并根据您的要求进行更新,然后在导航时传递。
this.route.queryParams.subscribe(qparams => {
this.currentQueryParams= qparams;
});
updatedqueryParams = // use this.currentQueryParams update it to append\update new stuff
let navigationExtras: NavigationExtras = {
queryParams: updatedqueryParams
};
// Navigate to the login page with extras
this.router.navigate(['<some path>'], navigationExtras);
preserveQueryParams
的意思是传递您要路由到的当前全局queryParams,
所以如果当前网址是
dashboard?debug=true&somevar=1
你写下面的内容,
this.router.navigate(['admin'], {
preserveQueryParams: true
}
);
新路由将是,因此它保留了查询参数。
admin?debug=true&somevar=1
希望这会有所帮助!!
答案 1 :(得分:0)
不推荐使用preserveQueryParams,而是使用queryParamsHandling。
queryParamsHandling用于配置策略以处理下一个导航的查询参数。