在index.vue 中的onload方法里面或者app.vue中的onLaunch中添加如下部分:
update() {
var _this = this;
uni.request({
url: `${this.$store.state.apiBaseUrl}/users/versions`, //請(qǐng)求接口
method: 'POST',
success: result => {
if (result.data.code == 1) {
plus.runtime.getProperty(plus.runtime.appid, function(inf) {
if(inf.version != result.data.data.versions){
uni.showModal({
title: "發(fā)現(xiàn)新版本",
content: "確認(rèn)下載更新",
success: (res) => {
if (res.confirm == true) {//當(dāng)用戶(hù)確定更新潦刃,執(zhí)行更新
_this.doUpData();
}
}
})
}
});
}
},
})
},
doUpData() {
uni.showLoading({
title: '更新中……'
})
uni.downloadFile({//執(zhí)行下載
url: '***', //下載地址
success: downloadResult => {//下載成功
uni.hideLoading();
if (downloadResult.statusCode == 200) {
uni.showModal({
title: '',
content: '更新成功唇撬,確定現(xiàn)在重啟嗎吹菱?',
confirmText: '重啟',
confirmColor: '#EE8F57',
success: function(res) {
if (res.confirm == true) {
plus.runtime.install(//安裝
downloadResult.tempFilePath, {
force: true
},
function(res) {
utils.showToast('更新成功亮垫,重啟中');
plus.runtime.restart();
}
);
}
}
});
}
}
});
}