gpt4 book ai didi

angular - 异常 : Root segment cannot have matrix parameters

转载 作者:太空狗 更新时间:2023-10-29 17:07:09 24 4
gpt4 key购买 nike

HTML:

[routerLink]="['', {'scrollTo': '#contact'}]"

TS:

this.route.params.forEach((params: Params) => {
if (params['scrollTo']) {
// some code here
}
});

错误:异常:根段不能有矩阵参数

我的 routerLink 中不能有 'scrollTo' 参数吗?

它清楚地出现在 Angular 2 文档中:https://angular.io/docs/ts/latest/guide/router.html#!#appendix-link-parameters-array

编辑:

似乎没有提示:<a [routerLink]="['/crisis-center', { scrollTo: '#contact' }]">Crisis Center</a> .但是我的 '' 根路由需要它。

最佳答案

最近,它在 Angular 5+ 中以这种方式完成:

<a [routerLink]="['/']" [queryParams]="{ 'tour': true }"> text </a>

正在做 [routerLink]="['/', { 'tour': true' }]"> text </a>会抛出错误

关于angular - 异常 : Root segment cannot have matrix parameters,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40089486/

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