作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
假设我有以下网址:
团队/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/
假设我有以下网址: 团队/11/user/22 如何遍历团队 ID 但保持用户 ID 不变? 团队/22/user/22 this.router.createUrlTree(['../../team/
我目前有一个路线守卫,例如 export class EntityGuard implements CanActivate { constructor(private readonly route
我正在尝试为我的导航栏组件创建一个单元测试。该组件是应用程序的父容器。由于某些原因,业力一直给我这个错误,我无法在互联网上找到任何关于它的引用或如何修复它。任何帮助都会很棒,谢谢 navBar.com
在具有“useHash:true”路由器模块配置的Angular 7单页应用程序中,我需要生成要在新选项卡中打开的资源的url。 对于应用程序窗口中的路由,以下代码按预期工作: this.router
我是一名优秀的程序员,十分优秀!