这里我有一个数组place.reviews
,但这个数组有时是空的,所以我需要编写一个函数,首先检查数组是否为空,如果不是,则从数组中获取数据......
所以我尝试:
if (!!place.reviews) for(var i=0;i<place.reviews.length;i++){
contentStr += '<br>'+ place.reviews[i].text+ '</br>';
}
但是这段代码对我不起作用?
这里有问题 if (!!place.reviews)
还是...?