3

我正在尝试向我的 Ionic 3 应用程序添加一个 href 调用操作。我将电话号码存储在绑定中{{item.phone}}

我需要将其添加到 href 标记才能打开手机本机应用程序。我不知道如何将它绑定到 href 标签

<ion-col col-10 href="......">{{item.phone}}</ion-col>

请协助

4

1 回答 1

1

不确定你想做什么。

href但是你可以像这样绑定到动态

<ion-col col-10 [href]="item.phone">{{item.phone}}</ion-col>

或者

<ion-col col-10 href={{item.phone}}>{{item.phone}}</ion-col>
于 2018-05-07T06:12:47.387 回答