c***@qq.com
c***@qq.com
  • 发布:2021-04-25 22:16
  • 更新:2021-04-26 09:55
  • 阅读:2707

forEach is not a function 这是什么问题呀

分类:uni-app
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, 微信小程序测试通过,百度小程序一直报错。

2021-04-25 22:16 负责人:无 分享
已邀请:
雷峰

雷峰

报错就代表list不是数组类型,你打印出list的值就知道了

该问题目前已经被锁定, 无法添加新回复