如何使用角度在Skype上启动呼叫?

时间:2015-10-19 16:28:06

标签: javascript angularjs call skype

这是我的代码。 如何传递值customer.telephone?

<tr md-auto-select ng-repeat="customer in customers">
   <td>
     <a href="skype:{{customer.telephone}}?call">{{customer.telephone}}</a>
   </td>
   <td>{{customer.eMail}}</td>
</tr>

2 个答案:

答案 0 :(得分:0)

尝试使用ng-href代替href

<a ng-href="skype:{{customer.telephone}}?call">{{customer.telephone}}</a>

https://docs.angularjs.org/api/ng/directive/ngHref

答案 1 :(得分:0)

使用ng-href代替href确保href代码正确插值,并确保skype方案位于$compileProvider.aHrefSanitizationWhitelist。默认情况下,它不是。请参阅the source