我在config.xml中有这段代码
<content src="index.html"/>
<access origin="*"/>
<allow-navigation href="tel:*" />
<allow-intent href="tel:*"/>
<allow-intent href="mailto:*"/>
<allow-intent href="http://*/*"/>
<allow-navigation href="tel:*"/>
<allow-navigation href="http://*/*"/>
<allow-navigation href="https://*/*"/>
<access origin="mailto:*" launch-external="true" />
<access origin="tel:*" launch-external="true" />
这在HTML中:
<a ng-href="tel:{{item.phone}}"><h3>Anrufen</h3></a>
item.phone返回0331234567
index.html中的:
<meta name="format-detection" content="telephone=yes">
我的错误是什么?
答案 0 :(得分:6)
<content src="index.html"/>
<access origin="*"/>
<access origin="mailto:*" launch-external="true" />
<access origin="tel:*" launch-external="true" />
保留这些。删除其他人。
这两个导致 net :: ERR_UNKNOWN_URL_SCHEME 问题:
<allow-navigation href="tel:*" />
<allow-intent href="tel:*"/>