onLoad: function (options) {
var lent = [
"https://wx.qlogo.cn/mmhead/XtxAEvJhLWZbe5xLnXFw1EjI54NkntBricIbfBkvNiajE/64",
"https://wx.qlogo.cn/mmhead/XtxAEvJhLWZbe5xLnXFw1EjI54NkntBricIbfBkvNiajE/64",
"https://wx.qlogo.cn/mmhead/XtxAEvJhLWZbe5xLnXFw1EjI54NkntBricIbfBkvNiajE/64"]
var temp = []
for (var i = 0; i < lent.length; i++) {
wx.downloadFile({
url: lent[i],
success(res) {
if (res.statusCode === 200) {
temp[i] = res.tempFilePath
}
}
})
}
console.log(temp)
}
微信小程序开发问题解答
微信小程序开发者回答:
典型的闭包问题,可以通过立即函数或是forEach写箭头函数来解决。
微信小程序开发者回答:
for (var i = 0; i < lent.length; i++) {
let index = i
wx.downloadFile({
url: lent[index ],
success(res) {
if (res.statusCode === 200) {
temp[index ] = res.tempFilePath
}
}
})
}
微信小程序开发者回答:
1
本文网址:http://www.91bianli.com/weixinxiaochengxu/38980.html