最佳答案
jQuery 1.5带来了新的Deferred对象和附加方法.when
、.Deferred
和._Deferred
。
对于那些以前没有使用过.Deferred
的人,我已经注释了来源。
这些新方法的可能用途是什么,我们如何将它们纳入模式?
我已经读过API和源,所以我知道它是做什么的。我的问题是我们如何在日常代码中使用这些新特性?
我有一个简单的例子的缓冲区类,它按顺序调用AJAX请求。(上一个结束后下一个开始)。
/* Class: Buffer
* methods: append
*
* Constructor: takes a function which will be the task handler to be called
*
* .append appends a task to the buffer. Buffer will only call a task when the
* previous task has finished
*/
var Buffer = function(handler) {
var tasks = [];
// empty resolved deferred object
var deferred = $.when();
// handle the next object
function handleNextTask() {
// if the current deferred task has resolved and there are more tasks
if (deferred.isResolved() && tasks.length > 0) {
// grab a task
var task = tasks.shift();
// set the deferred to be deferred returned from the handler
deferred = handler(task);
// if its not a deferred object then set it to be an empty deferred object
if (!(deferred && deferred.promise)) {
deferred = $.when();
}
// if we have tasks left then handle the next one when the current one
// is done.
if (tasks.length > 0) {
deferred.done(handleNextTask);
}
}
}
// appends a task.
this.append = function(task) {
// add to the array
tasks.push(task);
// handle the next task
handleNextTask();
};
};
我正在寻找.Deferred
和.when
的演示和可能的使用。
能看到._Deferred
的例子也很不错。
链接到新的jQuery.ajax
源来获取例子是欺骗行为。
我特别感兴趣的是,当我们抽象出一个操作是同步完成还是异步完成时,可以使用哪些技术。