- 当前 Bug 的表现(可附上截图)
说是1.4.0版本就能用,我们后台已经限制了2.0.9,而且微信版本7.0.4,怎么可能用不了下载资源的进度啊
var donwTask = wx.downloadFile({
url: zipFile,
header: {'Content-Type': 'application/x-zip-compressed'},
success: function (res)
{
_success();
},
fail: function (res)
{
_failed();
}
});
donwTask.onProgressUpdate(function (res)
{
var fProgress = res.progress;
var nBytesWritten = res.totalBytesWritten;
var nBytesExpectedToWrite = res.totalBytesExpectedToWrite;
});
代码就这几行
你好,小游戏相关的问题请移步至小游戏专区https://developers.weixin.qq.com/community/minigame提问,我们会有对应的同学处理