dojo 문장 실행 순서

1309 단어 dojo
dojo.declare("Test", null, {
	myData : null,
	myFunc : function() {
		alert(this.myData);
		console.log("4");
	},

	constructor : function() {
		console.log("1");
		dojo.xhrGet({
			url : "data.json",
			load : function(data) {
				this.myData = data;
				console.log("2");
			}
		});
		console.log("3");
	}
});

var t = new Test();
t.myFunc();
// 
//1
//3
//4
//2

xhrGet 함수를 동기화하면 OK입니다.
참고: xhrGet에서 myData를 설정할 때this로 쓸 수 없습니다.myData, 그 함수 안에서this는 xhrGet 함수를 가리킨다.
dojo.declare("Test", null, {
	myData : null,
	myFunc : function() {
		alert(this.myData);
		console.log("4");
	},

	constructor : function() {
		console.log("1");
		var self = this;
		dojo.xhrGet({
			url : "data.json",
			sync:true,
			load : function(data) {
				self.myData = data;
				console.log("2");
			}
		});
		console.log("3");
	}
});

var t = new Test();
t.myFunc();
 

좋은 웹페이지 즐겨찾기