首页 前端知识 HTML5进阶(三)HBuilder实现软件自动升级(优化篇)_hbuilder标签优化(1)

HTML5进阶(三)HBuilder实现软件自动升级(优化篇)_hbuilder标签优化(1)

2024-05-11 23:05:58 前端知识 前端哥 685 943 我要收藏

if (e.index == 0) {
console.log(“确定更新!”);
downWgt(data.newVersion, data.url); // 下载升级包
}
}, " 立马送药", [“确定”, “取消”]);
}, function(data) {
/$ionicLoading.show({
template: ‘测试’
});
$timeout(function() {
$ionicLoading.hide();
}, 1200);
/
});
});
}
if(window.plus){
plusReady();
}else{
document.addEventListener(‘plusready’,plusReady,false);
}
// 下载新版本
function downWgt(newVer, wgtUrl){
plus.nativeUI.showWaiting(“下载wgt文件…”);
plus.downloader.createDownload( wgtUrl, {filename:“_doc/update/”}, function(d,status){
if ( status == 200 ) {
console.log(“下载wgt成功:”+d.filename);
installWgt(d.filename,newVer);// 安装wgt包
} else {
console.log(“下载wgt失败!”);
plus.nativeUI.alert(“下载wgt失败!”);
}
plus.nativeUI.closeWaiting();
}).start();
}
// 更新应用资源
function installWgt(path,newVer){
plus.nativeUI.showWaiting(“安装wgt文件…”);
// force:false进行版本号校验,如果将要安装应用的版本号不高于现有应用的版本号则终止安装,并返回安装失败
plus.runtime.install(path,{force:false},function(){
plus.nativeUI.closeWaiting();
console.log(“安装wgt文件成功!”);
localStorage.setItem(‘newVer’, newVer);
// H5 plus事件处理,弹出提示信息对话框
plus.nativeUI.confirm(“应用资源更新完成,是否重新打开应用?”, function(e) {
if (e.index == 0) {
console.log(“确定重新打开应用!”);
plus.runtime.restart();
}
}, " 立马送药", [“确定”, “取消”]);
},function(e){
plus.nativeUI.closeWaiting();
console.log(“安装wgt文件失败[” + e.code + “]:” + e.message);
plus.nativeUI.alert(“安装wgt文件失败[” + e.code + “]:” + e.message);
});
}


 


### 服务端源码(拿走不谢)


 



// check version
public static boolean do_9104(RequestMessage request,ResponseMessage response) {

logger.info(“\n\n------------Check_APP_Version_9104 debug info-------------\n请求数据包信息:” + request.json.toString());
String version = request.getString(“version”).trim();
String currentVersion = FileUtil.readFile(MyConst.VERSION_FILE_PATH).replaceAll(“null”,“”).trim();
logger.info(“当前APP版本:[” + currentVersion + “]”);
if(!version.isEmpty() && !currentVersion.isEmpty() && (!version.equals(currentVersion))){
response.json.element(“newVersion”, currentVersion); // 返回最新版本
response.json.element(“url”, MyConst.WGT_URL + currentVersion + “.wgt”); // 返回wgt文件下载地址
}else if(!version.isEmpty() && !currentVersion.isEmpty() && (version.equals(currentVersion))){
response.result = MyConst.ERR_VERSION_SAME;
response.errtext = “当前已是最新版本”;
}else{
response.result = MyConst.ERR_VERSION;
response.errtext = “版本信息查询失败”;
return (false);
}
return true;
}


 


### 优化


      在上面的app版本管理中,更新包及版本控制文件version.txt均需要手动添加、更改,这一体验令人极为不爽,遂决定进一步优化之~


      为了进一步方便管理人员对版本控制的操作。在管理端进一步增加通过程序增加更新包的功能模块,该功能模块能够实现更新包的上传,同时将新的版本号写入version.txt版本文件中。


### 参考文献
#### 最后

**[开源分享:【大厂前端面试题解析+核心总结学习笔记+真实项目实战+最新讲解视频】](https://bbs.csdn.net/topics/618166371)**
就答题情况而言,第一问100%都可以回答正确,第二问大概只有50%正确率,第三问能回答正确的就不多了,第四问再正确就非常非常少了。其实此题并没有太多刁钻匪夷所思的用法,都是一些可能会遇到的场景,而大多数人但凡有1年到2年的工作经验都应该完全正确才对。
只能说有一些人太急躁太轻视了,希望大家通过此文了解js一些特性。

并祝愿大家在新的一年找工作面试中胆大心细,发挥出最好的水平,找到一份理想的工作。
转载请注明出处或者链接地址:https://www.qianduange.cn//article/8142.html
标签
评论
发布的文章
大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!