我使用這個代碼視圖:進行電話呼叫離子應用
<a href="tel:{{doc.emergency}}" class="button phone button-full" >Phone Call</a>
我不能撥打電話。 這是我config.xml中
<access origin="tel:*" launch-external="yes" />
<allow-intent href="tel:*" />
我使用這個代碼視圖:進行電話呼叫離子應用
<a href="tel:{{doc.emergency}}" class="button phone button-full" >Phone Call</a>
我不能撥打電話。 這是我config.xml中
<access origin="tel:*" launch-external="yes" />
<allow-intent href="tel:*" />
對我來說,以下工作:
<access origin="tel:*" launch-external="yes"/>
<allow-intent href="tel:*" />
<allow-navigation href="tel:*" />
類似的問題被問here。
感謝它的作品(:@Dexter –