gpt4 book ai didi

Angular:将查询参数附加到 URL

转载 作者:太空狗 更新时间:2023-10-29 17:01:52 26 4
gpt4 key购买 nike

我正在使用这个:

    import { HttpParams } from '@angular/common/http';
let params = new HttpParams();
params.append('newOrdNum','123');

但这不起作用,我没有在 url 中附加参数。有什么建议吗?

最佳答案

这可以通过使用 Router 类来实现:

使用组件:

import { Router, ActivatedRoute } from '@angular/router';

@Component({})
export class FooComponent {
constructor(
private _route: ActivatedRoute,
private _router: Router
){}

navigateToFoo(){
// changes the route without moving from the current view or
// triggering a navigation event,
this._router.navigate([], {
relativeTo: this._route,
queryParams: {
newOrdNum: '123'
},
queryParamsHandling: 'merge',
// preserve the existing query params in the route
skipLocationChange: true
// do not trigger navigation
});
}
}

更多信息请查看this book和 Angular Router API

关于Angular:将查询参数附加到 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46213737/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com