如何使用 angular 在 Skype 上开始通话?
How to start the call on Skype with angular?
这是我的代码。
如何传递值 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>
尝试 ng-href
而不是 href
:
<a ng-href="skype:{{customer.telephone}}?call">{{customer.telephone}}</a>
使用 ng-href
而不是 href
以确保正确插入 href
标签,并确保 skype
方案在 $compileProvider.aHrefSanitizationWhitelist
中.默认情况下,它不是。参见 the source。
这是我的代码。 如何传递值 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>
尝试 ng-href
而不是 href
:
<a ng-href="skype:{{customer.telephone}}?call">{{customer.telephone}}</a>
使用 ng-href
而不是 href
以确保正确插入 href
标签,并确保 skype
方案在 $compileProvider.aHrefSanitizationWhitelist
中.默认情况下,它不是。参见 the source。