小程序
小游戏
企业微信
微信支付
扫描小程序码分享
在使用setData的时候设置一个数组,发现一次性setData的数据太大会导致报错。为了解决这个问题,我降低了setData数据的粒度。通过for循环设置数组中的数组项。发现到达一定的数组长度。整个页面会变成空白。求解
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
var that = this;
var i = 0;
var timer = setInterval(function () {
if (i < moduleList.length) {
that.setData({
["moduleList[" + i + "]"]: moduleList[i],
["dataCache[" + i + "]"]: moduleList[i],
});
i++;
} else {
clearInterval(timer)
}
}, 100)
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
具体是什么问题?麻烦提供能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
已提供,moduleList数组很长很长。到了一定的程度就会出现整个页面空白
请问是内存问题吗
麻烦提供一下这种格式的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
var that = this;
var i = 0;
var timer = setInterval(function () {
if (i < moduleList.length) {
that.setData({
["moduleList[" + i + "]"]: moduleList[i],
["dataCache[" + i + "]"]: moduleList[i],
});
i++;
} else {
clearInterval(timer)
}
}, 100)
具体是什么问题?麻烦提供能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
已提供,moduleList数组很长很长。到了一定的程度就会出现整个页面空白
请问是内存问题吗
麻烦提供一下这种格式的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)