jQuery 1.5 porta il nuovo oggetto differite ed i metodi associati .when
, .Deferred
e ._Deferred
.
Per coloro che non hanno mai usato .Deferred
prima, ho annotato la fonte per questo .
Quali sono i possibili usi di questi nuovi metodi, come possiamo adattarli ai modelli?
Ho già letto l' API e la fonte , quindi so cosa fa. La mia domanda è: come possiamo usare queste nuove funzionalità nel codice di tutti i giorni?
Ho un semplice esempio di una classe di buffer che chiama la richiesta AJAX in ordine. (Il prossimo inizia dopo quello precedente).
/* 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();
};
};
Sto cercando dimostrazioni e possibili usi di .Deferred
e .when
.
Sarebbe anche bello vedere esempi di ._Deferred
.
Il collegamento alla nuova jQuery.ajax
fonte per esempio è barare.
Sono particolarmente interessato a quali tecniche sono disponibili quando astraggiamo se un'operazione viene eseguita in modo sincrono o asincrono.
._Deferred
è semplicemente il vero "oggetto differito" che .Deferred
utilizza. È un oggetto interno che molto probabilmente non ti servirà mai.