我有一个xhr get请求,我使用when()来检查xhr get是否已解析。 我可以使用console.log打印特定值,但无法将值存储在局部变量中。为什么这样,我如何在局部变量中保留该值?
var x="";
dojo.when(
xhr,//xhr get request
function(res){
console.log(res.additional);//displays value
x=res.additional;
}
);
console.log(x);//Doesn't have the value