我无法在离子应用中正确打开外部链接。
我有一个包含网址event.orglink
如果我有这样的url字符串,我可以加载一个链接;
<a class="item" href="#" onclick="window.open('http://www.google.com/', '_system', 'location=yes'); return false;">
Open link
</a>
但是我无法从我的模型中正确打开链接......
<h4>
<a href="#" onclick="window.open({{event.orglink}}, '_system', 'location=yes');"> {{event.orginfo}}</a>
</h4>
如何使用event.orglink
中的window.open
网址?