gpt4 book ai didi

angular - 检查 router.url 是否包含特定字符串?

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

我有这个:

   if (this.router.url === '/test/sort') {

this.active = 0;
}

问题是有时 url 会是 test/sort?procesId=11 并且它不会进入 if 语句。有什么建议我该怎么做吗?

最佳答案

如果你想要一些基本的东西:

if (this.router.url.indexOf('/test/sort') > -1) {
this.active = 0;
}

关于angular - 检查 router.url 是否包含特定字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45934285/

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