onLoad(){
uni.downloadFile({
url:’https://hbgd-app.oss-cn-hangzhou.aliyuncs.com/hbgd211025.apk‘,
success: res => {
console.log(JSON.stringify(res))
if (res.statusCode == 200) {
this.installBtn(res.tempFilePath);
}
}
});
} ,
methods:{
installBtn: function(path) {
plus.runtime.install(path, {
force: false
}, res => {
//更新完重启app
plus.runtime.restart();
},err => {
uni.showModal({
title: '更新失败',
content: err.message,
showCancel: false,
success: res => {
}
});
});
},
}
5***@qq.com (作者)
那么解决方式是什么,建议跳转到默认浏览器下载安装包吗
2021-10-28 15:25
DCMarvel
回复 5***@qq.com: 要么卸载流氓UC 要么选打包 然后选始终
2021-10-29 08:47