function downWgt(wgtUrl, version) {
if (wgtUrl == "") {
} else {
dtask = plus.downloader.createDownload(wgtUrl, {
filename: "_doc/update/"
}, function(d, status) {
if (status == 200) {
installWgt(d.filename, version); // 安装wgt包
} else {
plus.nativeUI.alert("下载更新资源失败!");
}
});
dtask.addEventListener("statechanged", onStateChanged);
dtask.start();
}
}
//监听下载进度
function onStateChanged(task, status) {
if (status!=null && status==200 && task.state!=null) {
var a = task.downloadedSize / task.totalSize * 100;
showupdate.setTitle(" 已下载" + parseInt(a) + "% ");
}
}
// 更新应用资源
2 个回复
DCloud_App_Array
请确认dtask.state的状态有没有变成4,如果没有说明网络传输出现错误。
尝试暂停并重试。
k***@126.com
解决没