在这里,我有一个必须返回给我评论的代码......所以我有一个数组reviews[i]
我尝试过,places.reviews[0].text
但我只得到第一个评论,如果有 5 条,我想获得 5 条,如果有 3 条,我想获得 3 条评论......
但是我如何才能增加我......如何编写代码来让我从数组中获得所有评论reviews[i]
?
我尝试:
contentStr += '<br>'+place.reviews[0-4].text+'</p>';
但它不起作用。
还有评级获得place.reviews[0-4].rating
...