我使用角度4和模板(.html),我编码为
<a *ngHref="tel:{{orders.billing_address.telephone}}"> <span> Call : </span>
它会抛出错误
无法绑定到'href',因为它不是已知的本机属性
我搜索它并获得角度4使用[routerLink]。但我不知道如何使用[routerLink]来设置tel:numbers。你能指导我吗?
答案 0 :(得分:4)
href
内的[]
。它会让您删除{{}}
部分。如果你想在内部连接字符串,你需要创建一个像'tel:' + otherParts
<a [href]="'tel:' + orders.billing_address.telephone"> <span> Call : </span>
答案 1 :(得分:4)
在角度2
中使用[href]
<a [href]="'tel:'+ orders.billing_address.telephone"> <span> Call : </span>