我试图从p5中读取带有loadJSON的Json文件,但是数据来晚了。如果我尝试console.log(JSON.stringify(data))
,它会显示{}
。
function setup() {
for(i = 0;i <= 3;i++) {
//load the JSON
data = loadJSON('test'+ i +'.json');
//Work with it
console.log(JSON.stringify(data);
}
}
答案 0 :(得分:0)
function test(mynewdata) {
console.log(mynewdata);
}
data = loadJSON('test' + i + '.json',test);
这对我有用。谢谢!