setTimeout(() => {
//list = json.newsList;
list.forEach(item => {
//item.id = parseInt(Math.random() * 10000);
tabItem.newsList.push(item);
//console.log(item);
})
this.$forceUpdate();
//console.log(page);
//下拉刷新 关闭刷新动画
if (type === 'refresh') {
this.$refs.mixPulldownRefresh && this.$refs.mixPulldownRefresh.endPulldownRefresh();
// #ifdef APP-PLUS
tabItem.refreshing = false;
// #endif
tabItem.loadMoreStatus = 0;
}
}, 2000)
list 已返回 json ,为什么还报错啊 list.forEach is not a function, 微信小程序测试通过,百度小程序一直报错。
1 个回复
雷峰
报错就代表list不是数组类型,你打印出list的值就知道了