Jquery Deferred Promises Executing Out Of Order?
Solution 1:
$.when( _this.processCookies() )
.then( _this.loadAdScripts() )
.then( _this.createChildViews() );
appear to be calling loadScripts()
, createChildViews()
immediately, instead try referencing function names at .then(_this.loadAdScripts)
callbacks .
return def.resolve()
returns jQuery.Deferred()
object , not jQuery promise object ; try adding .promise()
after .resolve()
to return jQuery promise object .
jQuery.ajax()
returns jQuery promise object ; not necessary to create new jQuery $.Deferred()
object, could return $.ajax()
initialize: function () {
console.log('AppView::initialized!');
var _this = this;
$.when( _this.processCookies() )
// reference function name, not invoked
.then( _this.loadAdScripts )
.then( _this.createChildViews );
},
processCookies: function () {
// no asynchronous operations appear here, // no need to include `$.Deferred()` or `.promise()` object// var def = $.Deferred();console.log('(1) PROCESS COOKIES');
// return jQuery promise object, not deferred object// return def.resolve().promise();
},
/**
* Instantiates new instances of the child views.
*/createChildViews: function () {
var _this = this;
console.log('(4) CREATING CHILD VIEWS');
},
loadAdScripts: function () {
//var _this = this,// def = $.Deferred();return $.when(
_this.insertScript({
name: 'example1',
async: false,
src: '//www.example.com/script1.js',
}),
_this.insertScript({
is_mobile: is_mobile,
name: 'example2',
async: true,
src: '//example.com/script2.js'
})
)
.done(function () {
console.log('(3) ALL SCRIPTS LOADED');
// def.resolve();
});
},
insertScript: function (script) {
// var def = $.Deferred(),
protocol = (document.location.protocol === 'https:' ? 'https:' : 'http:');
// dont script 2 on mobile.// if (script.name === 'example2' && script.is_mobile) {// console.log('skipping script');// return def.resolve().promise();// }var promise = script.name === 'example2' && script.is_mobile
? $.when()
: $.ajax({
dataType: 'script',
cache: false,
async: script.async,
url: protocol + script.src,
});
promise.done( function () {
console.log('(2) SINGLE SCRIPT LOADED');
// def.resolve();
});
},
EDIT: IMPORTANT NOTE this is using jQuery 1.7.2, and no it cannot be changed from this version
Edit, Updated
Expected order may not be possible using jQuery version 1.7.2 , without modifying source.
Appear to return expected order when using jQuery version 1.8+ , following update of deferred.then ; see http://blog.jquery.com/2012/08/09/jquery-1-8-released/ , http://bugs.jquery.com/ticket/11010
1.8.0
var dfd = {
initialize: function () {
console.log('AppView::initialized!');
_this = dfd;
$.when(_this.processCookies())
// reference function name, not invoked
.then(_this.loadAdScripts)
.then(_this.createChildViews);
},
processCookies: function () {
// no asynchronous operations appear here, // no need to include `$.Deferred()` or `.promise()` objectvar def = $.Deferred(function (d) {
setTimeout(function () {
d.resolve('(1) PROCESS COOKIES')
}, Math.floor(Math.random() * 1000));
}).promise();
def.then(function (msg) {
console.log(msg);
});
return def.promise()
},
/**
* Instantiates new instances of the child views.
*/createChildViews: function () {
_this = dfd;
console.log('(4) CREATING CHILD VIEWS');
},
loadAdScripts: function () {
_this = dfd;
return $.when.apply(_this, [_this.insertScript({
name: 'example1',
async: false,
src: '//www.example.com/script1.js',
}),
_this.insertScript({
is_mobile: true,
name: 'example2',
async: true,
src: '//example.com/script2.js'
})]).then(function () {
console.log('(3) ALL SCRIPTS LOADED');
})
},
insertScript: function (script) {
// var def = $.Deferred(),
protocol = (document.location.protocol === 'https:' ? 'https:' : 'http:');
// dont script 2 on mobile.// if (script.name === 'example2' && script.is_mobile) {// console.log('skipping script');// return def.resolve();// }var promise = $.when( script.name === 'example2' && script.is_mobile ? $.Deferred(function (d) {
setTimeout(function () {
d.resolve('(2) skipping script', protocol + script.src)
}, Math.floor(Math.random() * 1000))
}).promise() : $.Deferred(function (d) {
setTimeout(function () {
d.resolve('(2) SINGLE SCRIPT LOADED', protocol + script.src)
}, Math.floor(Math.random() * 1000))
}).promise())
return promise.then(function(msg) {
console.log(msg)
});
}
};
dfd.initialize();
<scriptsrc="https://ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js"></script>
1.72
var dfd = {
initialize: function () {
console.log('AppView::initialized!');
_this = dfd;
$.when(_this.processCookies())
// reference function name, not invoked
.then(_this.loadAdScripts)
.then(_this.createChildViews);
},
processCookies: function () {
// no asynchronous operations appear here, // no need to include `$.Deferred()` or `.promise()` objectvar def = $.Deferred(function (d) {
setTimeout(function () {
d.resolve('(1) PROCESS COOKIES')
}, Math.floor(Math.random() * 1000));
}).promise();
def.then(function (msg) {
console.log(msg);
});
return def.promise()
},
/**
* Instantiates new instances of the child views.
*/createChildViews: function () {
_this = dfd;
console.log('(4) CREATING CHILD VIEWS');
},
loadAdScripts: function () {
_this = dfd;
return $.when.apply(_this, [_this.insertScript({
name: 'example1',
async: false,
src: '//www.example.com/script1.js',
}),
_this.insertScript({
is_mobile: true,
name: 'example2',
async: true,
src: '//example.com/script2.js'
})]).then(function () {
console.log('(3) ALL SCRIPTS LOADED');
})
},
insertScript: function (script) {
// var def = $.Deferred(),
protocol = (document.location.protocol === 'https:' ? 'https:' : 'http:');
// dont script 2 on mobile.// if (script.name === 'example2' && script.is_mobile) {// console.log('skipping script');// return def.resolve();// }var promise = $.when( script.name === 'example2' && script.is_mobile ? $.Deferred(function (d) {
setTimeout(function () {
d.resolve('(2) skipping script', protocol + script.src)
}, Math.floor(Math.random() * 1000))
}).promise() : $.Deferred(function (d) {
setTimeout(function () {
d.resolve('(2) SINGLE SCRIPT LOADED', protocol + script.src)
}, Math.floor(Math.random() * 1000))
}).promise())
return promise.then(function(msg) {
console.log(msg)
});
}
};
dfd.initialize();
<scriptsrc="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
Post a Comment for "Jquery Deferred Promises Executing Out Of Order?"