This question already has answers here:
How do I return the response from an asynchronous call?
(36个答案)
6年前关闭。
Ajax不会回退任何数据。
http://jsfiddle.net/w67C4/
返回的数据为null,但需要返回userId
FIDDLE
(36个答案)
6年前关闭。
Ajax不会回退任何数据。
http://jsfiddle.net/w67C4/
$.ajax({
dataType:'jsonp',
url: url,
async:false,
success: function(data){
getUsername = data.user.id;
},
});
返回的数据为null,但需要返回userId
最佳答案
您需要这样做:
function getUserId() {
var url = "http://api.flickr.com/services/rest/?jsoncallback=?&api_key=fc6c52ed4f458bd9ee506912a860e466&method=flickr.urls.lookupUser&format=json&nojsoncallback=1&url=http://www.flickr.com/photos/flickr";
var getUsername = null;
return $.ajax({
dataType: 'jsonp',
url: url,
async: false
});
}
getUserId().done(function (result) {
// Call the alert here..
alert(result.user.id);
});
FIDDLE
关于javascript - jQuery Ajax不返回数据,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16286223/