我从jquery deferred.then()文档中获取了示例代码:Chain tasks.
我发现的问题是chained.done
处理程序,根据我的理解,应该在完成所有请求后调用。 相反处理程序在第一个请求完成时执行,并从同一请求中检索有效负载。
这是我正在使用的代码:
var request = $.ajax("http://www.json-generator.com/j/bPyGnSXXTm", {
dataType: "json",
crossDomain: true
}),
chained = request.then(function (data) {
console.log('First call, data:', data);
$('body').append('<p>' + 'First call, data: ' + JSON.stringify(data) + '</p>');
return $.ajax(data[0].url, {
crossDomain: true
});
});
chained.done(function (data) {
// data retrieved from url2 as provided by the first request
console.log('Second call, data:', data);
$('body').append('<p>' + 'Second call, data: ' + JSON.stringify(data) + '</p>');
});
您可以找到jsfiddle here。
此外,您可以打开控制台,并在第二个请求之前看到处理程序正在执行,(激活日志XMLHttpRequests)。
据我了解,chained
获取request
的值,而不是$.ajax
的返回值。
答案 0 :(得分:1)
使用1.8之前的jQuery,您需要使用.pipe()
而不是then()
:
chained = request.pipe(function (data) {...});
请参阅DOC以了解版本:http://api.jquery.com/deferred.then
之间的更改