我在组件中有这段代码
<a *ngFor="let item of config.socialLinks" [routerLink]="[item.url]">
...
</a>
这在使用 app.component 中定义的本地路由时按预期工作,但当外部路由重定向到 http:localhost:5555 | http://external.com 有没有办法将 routerLink 用于本地路由,将 href 用于外部路由?
我在组件中有这段代码
<a *ngFor="let item of config.socialLinks" [routerLink]="[item.url]">
...
</a>
这在使用 app.component 中定义的本地路由时按预期工作,但当外部路由重定向到 http:localhost:5555 | http://external.com 有没有办法将 routerLink 用于本地路由,将 href 用于外部路由?