我想从 json 文件中读取并使用它的值来绘制三角形。在例行程序中,我可以打印出该值,但在它之外,它将不再起作用。我的代码:
faces=new Array(40000);
$.getJSON('file.json', function(data) {
$.each(data.faces, function(i, f) {
faces[i]=new Array(3);
faces[i][1]=data.faces[i].f1;
faces[i][2]=data.faces[i].f2;
faces[i][3]=data.faces[i].f3;
//alert(faces[1][1]); works here
});
});
//alert(faces[1][1]); doesn't work here, console says faces[1][1] is undefined
我怎样才能解决这个问题?