在Ionic应用程序中打开链接

时间:2016-07-02 01:12:14

标签: android listview hyperlink ionic-framework

我有一个来自

的链接
<div class="list">
  <a ng-repeat="entry in entries" class="item" ng-click="browse(entry.link)">
               <b>{{entry.title}}</b><br>
               <span ng-bind-html="entry.contentSnippet"></span>
  </a>

</div>

但是,截至目前,它必须在浏览器中打开,而不是列出链接的应用程序。只是想知道是否有某种方法可以在应用程序本身内打开链接。谢谢。

1 个答案:

答案 0 :(得分:2)

试试这段代码:

<div class="list">
  <a ng-repeat="entry in entries" class="item"
onclick="window.open('{{entry.link}}', '_system', 'location=yes'); return false;"
>
          <b>{{entry.title}}</b><br>
            <span ng-bind-html="entry.contentSnippet"></span>
  </a>

</div>