离子异步值无法使用onclick window.open打开

时间:2019-02-04 17:07:14

标签: javascript asynchronous ionic3

我正在尝试从异步值打开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

谢谢

0 个答案:

没有答案