我想使用角度 7 中的路由器链接重定向到另一个链接,但 localhost:4200/dashboard 被附加到我要重定向的链接。
<a [routerLink]="https://google.com">Google</a>
当我点击谷歌时,它应该重定向到https://google.com但正在调用localhost:4200/dashboard/ https://google.com 。
我想使用角度 7 中的路由器链接重定向到另一个链接,但 localhost:4200/dashboard 被附加到我要重定向的链接。
<a [routerLink]="https://google.com">Google</a>
当我点击谷歌时,它应该重定向到https://google.com但正在调用localhost:4200/dashboard/ https://google.com 。
routerLink
用于 Angular 的内部路由。如果要导航到外部 URL,只需使用href
witha
标签:
<a href="https://google.com">Google</a>
路由器链接: https ://angular.io/api/router/RouterLink
顾名思义routerLink
,它适用于在您的应用程序路由中定义的内部 url。请使用此网址查看如何实现自定义网址。
https://medium.com/@adrianfaciu/using-the-angular-router-to-navigate-to-external-links-15cc585b7b88