gpt4 book ai didi

angular - 路由器导航使用 CreateUrlTree

转载 作者:行者123 更新时间:2023-12-05 07:34:18 32 4
gpt4 key购买 nike

假设我有以下网址:

团队/11/user/22

如何遍历团队 ID 但保持用户 ID 不变?

团队/22/user/22

this.router.createUrlTree(['../../team/22'], {relativeTo: this.route}) 删除用户参数。

最佳答案

希望这对某人有帮助,尝试这样的事情:

// import location
import {
Location
} from '@angular/common';

updateUrl() {
// or pass teamId&userId into func
const queryParams = {
teamId: this.teamId,
userId: this.userId
};
const urlTree = this.router.createUrlTree([], {
queryParams: queryParams,
relativeTo: this.activeRoute,
skipLocationChange: true
});
this.location.replaceState(urlTree.toString());
}

关于angular - 路由器导航使用 CreateUrlTree,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50219591/

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