gpt4 book ai didi

Angular 4路由到外部网址

转载 作者:太空狗 更新时间:2023-10-29 18:07:49 26 4
gpt4 key购买 nike

我正在尝试获取到外部 URL 的路由。到目前为止,以下是我的示例。

我得到的错误是:

ERROR Error: Uncaught (in promise): Error: Cannot match any routes. URL Segment: 'https:/google.com'

Error: Cannot match any routes. URL Segment: 'https:/google.com'

这是我的代码

ViolatorLink() {
this.router.navigate(['https://www.google.com/'], {
queryParams: {mid: this.mid}
}
);
}

最佳答案

理想情况下,您应该使用 window.location.href = "https://www.google.com"; 进行外部 URL 调用,因为 this.router.navigateangular routings 中查找 URL。

你的函数应该是这样的:

ViolatorLink() {
window.location.href = "https://www.google.com";
}

关于Angular 4路由到外部网址,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50862577/

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