2

我想使用角度 7 中的路由器链接重定向到另一个链接,但 localhost:4200/dashboard 被附加到我要重定向的链接。

 <a  [routerLink]="https://google.com">Google</a>

当我点击谷歌时,它应该重定向到https://google.com但正在调用localhost:4200/dashboard/ https://google.com 。

4

2 回答 2

2

routerLink用于 Angular 的内部路由。如果要导航到外部 URL,只需使用hrefwitha标签:

<a  href="https://google.com">Google</a>

路由器链接: https ://angular.io/api/router/RouterLink

于 2019-09-03T09:25:49.950 回答
0

顾名思义routerLink,它适用于在您的应用程序路由中定义的内部 url。请使用此网址查看如何实现自定义网址。

https://medium.com/@adrianfaciu/using-the-angular-router-to-navigate-to-external-links-15cc585b7b88

https://stackblitz.com/edit/angular-external-links

于 2019-09-03T10:06:57.047 回答