例如
var data=[ {}, {}, {} ]
需要打印出以上data中每个{}内容,可以使用如下方式:
for(var i=0;i<data.length;i++) { var a = data[i]; console.log(JSON.stringify(a)); }
记下以免遗忘