我无法让代码工作。我使用XMLHttpRequest加载和解析JSON文件,它工作正常,但在我的setup()函数后,我无法调用我定义的任何变量上的任何其他函数,如spriteDictionary - 即使在各种设置函数中我可以读取这些变量,看起来都很好。
有什么想法?在下面的示例中,当我调用console.log(parsedJSON)时;它是未定义的,因为我可以在我的设置代码中读取它的内容。谢谢!
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body id="body">
</body>
<script type="application/x-javascript">
var parsedJSON;
var ctx;
var canvas;
var atlas;
var sprites = [];
var spriteDictionary = {};
var sprite = function(name, atl, x, y, w, h) {
this.name = name;
this.atlas = atl;
this.x = x;
this.y = y;
this.w = w;
this.h = h;
this.cx = -w/2.0;
this.cy = -h/2.0;
}
function setup() {
var body = document.getElementById("body");
canvas = document.createElement("canvas");
canvas.width = 1200;
canvas.height =720;
body.appendChild(canvas);
var ctx = canvas.getContext('2d');
ctx.fillStyle="#000000";
ctx.fillRect(0,0,1200,720);
var xhr = new XMLHttpRequest();
xhr.open("GET","game_gfx.json",true);
xhr.onload = function (){
parsedJSON = JSON.parse(this.responseText);
load_assets(parsedJSON);
}
xhr.send();
ctx = canvas.getContext('2d');
}
function load_assets(pJSON) {
atlas = new Image();
atlas.onload = function() {
console.log("atlas loaded");
}
atlas.src= pJSON['meta']['image'];
var frame;
for (var i in pJSON['frames']){
frame = pJSON['frames'][i];
spriteDictionary[frame['filename']] = new sprite(frame['filename'],atlas,frame['frame']['x'],frame['frame']['y'],frame['frame']['w'],frame['frame']['h']);
i++;
}
}
setup();
console.log(parsedJSON);
</script>
</html>
答案 0 :(得分:1)
您不能将异步调用视为同步。
在Ajax调用返回之前,您正在调用console.log行。
onload侦听器中的一个简单的console.log语句会向您显示。
xhr.onload = function (){
console.log("I AM HERE!");
...
日志看起来像
undefined
"I AM HERE"
"atlas loaded"