admin管理员组文章数量:1435859
I am trying to get data from ajax call by cross domain. Here is code
function GetMaxWULen() {
var x;
$.ajax({
url : url,
method : 'POST',
jsonp : "callback",
async : false,
data : {
Function : "GetMaxWULen",
Authorization : Base64.encode(login + ":" + token),
WuType : $("#ddlWUType").val()
},
dataType : 'jsonp',
crossDomain : true,
error : function(request, status, error) {
alert('nie udało sie');
alert(error);
}
}).done(function(result) {
console.log('done result');
x = result;
console.log(x);
});
console.log('function end');
console.log(x);}
At the end of the function, x variable is undefined but in done event value is correct. Could anyone can help me or tell what is wrong in this code?
I am trying to get data from ajax call by cross domain. Here is code
function GetMaxWULen() {
var x;
$.ajax({
url : url,
method : 'POST',
jsonp : "callback",
async : false,
data : {
Function : "GetMaxWULen",
Authorization : Base64.encode(login + ":" + token),
WuType : $("#ddlWUType").val()
},
dataType : 'jsonp',
crossDomain : true,
error : function(request, status, error) {
alert('nie udało sie');
alert(error);
}
}).done(function(result) {
console.log('done result');
x = result;
console.log(x);
});
console.log('function end');
console.log(x);}
At the end of the function, x variable is undefined but in done event value is correct. Could anyone can help me or tell what is wrong in this code?
Share Improve this question asked Oct 30, 2013 at 11:22 dawiddawid 291 gold badge1 silver badge2 bronze badges 4-
It's asyncronous, so that last line of code is executed before the request loads, therefore
x
doesn't have a value yet. It works in thedone
event because that waits for the request to load before executing the function. – Joe Simmons Commented Oct 30, 2013 at 11:25 -
above error: add
success:YourfunctionName()
, later thenYourfunctionName(response ){alert(response)}
– Satinder singh Commented Oct 30, 2013 at 11:26 - 2 possible duplicate of How to return the response from an AJAX call? – Rory McCrossan Commented Oct 30, 2013 at 11:27
- 1 Please use the search feature. This question has been asked hundreds of times. – Rory McCrossan Commented Oct 30, 2013 at 11:27
2 Answers
Reset to default 3This happens because your AJAX request is done asynchronously. It means the rest of your code won't wait your response be ready to continue.
If you need to use the data returned from AJAX outside your function, you might want to create a parameter to serve as a callback when the response is ready. For example:
function yourFunction(callback) {
$.ajax({
/* your options here */
}).done(function(result) {
/* do something with the result here */
callback(result); // invokes the callback function passed as parameter
});
}
And then call it:
yourFunction(function(result) {
console.log('Result: ', result);
});
Fiddle: http://jsfiddle/9duek/
try
$.ajax({
url : url,
method : 'POST',
jsonp : "callback",
async : false,
data : {
Function : "GetMaxWULen",
Authorization : Base64.encode(login + ":" + token),
WuType : $("#ddlWUType").val()
},
dataType : 'jsonp',
crossDomain : true,
error : function(request, status, error) {
alert('nie udało sie');
alert(error);
}
}).success(function(result) {
var datareturned = result.d;
console.log('done' + datareturned);
x = datareturned;
console.log(x);
});
本文标签: javascriptHow to get data from ajax callStack Overflow
版权声明:本文标题:javascript - How to get data from ajax call? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745672036a2669628.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论