首先,我试图在没有任何插件的情况下做到这一点。我已经在代码中清理了tel: <a href="tel:0038098754215">
,它是从网页开始的,但不是来自移动设备。
然后我尝试添加成功添加的插件Call Number,但我正在运行的代码
setTimeout(function(){
console.log('testing');
window.plugins.CallNumber.callNumber(function(res){
console.log('res');
console.log(res);
}, function(err){
console.log('err');
console.log(err);
}, '00380680576169', true);
},10000);
来自浏览器的结果
testing
err
Missing Command Error
null
和移动设备:
testing
null
在config.xml中我正在添加
<access origin="tel:*" launch-external="yes" />
答案 0 :(得分:1)
在config.xml中添加以下代码
<access origin="tel:*" launch-external="yes" />
答案 1 :(得分:0)
您是否在“DeviceReady”功能中添加了代码?此外,我认为您不能使用浏览器测试此插件,而只能在设备上测试。