我正在学习如何使用 jQuery 的deferred,我注意到使用$.when
with的问题.notifyWith
。
我做了一个没有使用的例子$.when
,并且.notifyWith
效果很好
function a() {
var d = new $.Deferred,
$A = $('#A'),
$P = $('#P').progressbar();
setTimeout(function() {
$A.css('background-color', 'blue');
d.notifyWith($P, [.5]);
}, 2000);
setTimeout(function() {
$A.text('test');
d.notifyWith($P, [1]);
d.resolveWith($P, ['done']);
}, 4000);
return d.promise();
}
$('#G').click(function() {
a().progress(function(x) {
this.progressbar({
value: x * 100
});
}).done(function(x) {
alert(x)
});
});
演示:http: //jsfiddle.net/NTICompass/3DDSa/3/
内部.progress
,this
设置为$P
,因此进度条正确移动。
我想将这 2 个setTimeout
动作拆分为单独的函数,所以我这样做了,并且习惯于$.when
将这些承诺合并为一个:
(function() {
var $P = $('#P').progressbar();
window.a = function() {
var d = new $.Deferred,
$A = $('#A');
setTimeout(function() {
$A.css('background-color', 'blue');
d.notifyWith($P, [.5]);
d.resolve('a()');
}, 2000);
return d.promise();
}
window.b = function() {
var d = new $.Deferred,
$A = $('#A');
setTimeout(function() {
$A.text('test');
d.notifyWith($P, [.5]);
d.resolve('b()');
}, 4000);
return d.promise();
}
}())
$('#G').click(function() {
$.when(a(), b()).progress(function(x, y) {
this.progressbar({
value: ((x || 0) + (y || 0)) * 100
});
}).done(function(x, y) {
alert(x + ' ' + y)
});
});
演示:http: //jsfiddle.net/NTICompass/3DDSa/16/
出于某种原因this
里面.progress
不是。相反,它是延迟对象(或承诺对象,我不太确定)。为什么不等于? $P
this
$P