这是我的代码。 如何传递值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>
答案 0 :(得分:0)
尝试使用ng-href
代替href
:
<a ng-href="skype:{{customer.telephone}}?call">{{customer.telephone}}</a>
答案 1 :(得分:0)
使用ng-href
代替href
确保href
代码正确插值,并确保skype
方案位于$compileProvider.aHrefSanitizationWhitelist
。默认情况下,它不是。请参阅the source。