欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

cannot read property 'forEach' of undefined

程序员文章站 2022-03-04 11:03:14
...

遍历数组报错:cannot read property ‘forEach’ of undefined
在遍历之前,判断数组是否存在

$scope.list=[];
//遍历之前,判断数组是否存在
if(!$scope.list){
	return;
}
$scope.list.forEach(function(item,i){
	console.log(item);
})