我正在尝试学习使用 jquery deferreds。
在 jsfiddle 上使用 html 时,我得到一个返回的对象,该对象在then()
语句中打印时有两行:“成功”和 ajax 请求返回的 html。
所以当我这样做时:
$(document).on('click', '.ajax', function() {
$.when(ajax1('<p>first</p>'),
ajax2('<p>second</p>'),
ajax3('<p>third</p>'))
.then(function(results1, results2, results3) {
console.log(results1);
$('.document').append(results1);
$('.document').append(results2);
$('.document').append(results3);
alert('all ajax done');
});
});
http://jsfiddle.net/loren_hibbard/AsgDz/
我在控制台中得到了这个:
["<p>first</p>", "success",
Object
abort: function ( statusText ) {
always: function () {
complete: function () {
done: function () {
error: function () {
fail: function () {
getAllResponseHeaders: function () {
getResponseHeader: function ( key ) {
overrideMimeType: function ( type ) {
pipe: function ( /* fnDone, fnFail, fnProgress */ ) {
progress: function () {
promise: function ( obj ) {
readyState: 4
responseText: "<p>first</p>"
setRequestHeader: function ( name, value ) {
state: function () {
status: 200
statusCode: function ( map ) {
statusText: "OK"
success: function () {
then: function ( /* fnDone, fnFail, fnProgress */ ) {
__proto__: Object
我如何才能访问它responseText
并避免每隔一行显示“成功”的html输出:
first
success
second
success
third
success
而且由于我更有可能将它与 JSON 数据一起使用,我该如何解析它。现在,虽然它在我的then()
函数中返回“ajax all complete”,但控制台中返回的对象是一组三个对象。一个是解析的 json 字符串,另一个是令人讨厌的字符串,上面写着“成功”,第三个是大对象,其中包含我未解析的 JSON 对象的 responseText。如何访问第一个对象并打印我解析的字符串?
http://jsfiddle.net/loren_hibbard/jtvHf/1/
谢谢!