我正在尝试从异步值打开URL,但是无法在onclick事件中呈现它。
<div *ngIf="song | async; let song; ">
<h2>{{song.wordLink}} </h2>
<a href="#" onclick="window.open('http://{{ (song | async)?.wordLink }}', '_system', 'location=yes');" >{{song.wordLink}}</a>
</div>
正在song.wordLink异步。我可以将其打印在h2上的链接标签上...但不能用作网址来打开新的html
谢谢