手机机型华为荣耀8x,无法弹出选择浏览器的框,而且还打印 “msg”:“未找到可执行的应用”,但是手机上是有存在两个浏览器的。
代码:
api.openApp({
androidPkg: 'android.intent.action.VIEW',
mimeType: 'text/html',
uri: url
}, function (ret, err) {
if (ret) {
console.log(JSON.stringify(ret));
} else {
console.log(JSON.stringify(err));
}
});
解决办法:把androidPkg
和mimeType
参数去掉
api.openApp({
uri: url
}, function (ret, err) {
if (ret) {
console.log(JSON.stringify(ret));
} else {
console.log(JSON.stringify(err));
}
});
来源:CSDN
作者:韩知虹
链接:https://blog.csdn.net/weixin_44709394/article/details/103636700