我正在构建一个Web应用程序,该应用程序具有一组用户可能执行几次的功能,但涉及足够的异步操作以使回调失控。
$.Deffered
和$.when
可以多次“使用”的实际替代方案是什么?
谢谢!
答案 0 :(得分:2)
我认为你要找的是事件。 jQuery中使用on和trigger:
的示例var data_handler = $({});
function get_data(new_foo) {
// Do stuff, then send the event
data_handler.trigger('new_data', {foo: new_foo});
}
data_handler.on('new_data', function(e, data) {
console.log('Handler 1: ' + data.foo);
});
data_handler.on('new_data', function(e, data) {
console.log('Handler 2: ' + data.foo);
});
get_data(1);
get_data(2);
输出:
Handler 1: 1
Handler 2: 1
Handler 1: 2
Handler 2: 2
答案 1 :(得分:1)
答案 2 :(得分:0)
不是直接附加到promise,而是可以创建一个包含promise的包装器,允许回调订阅以设定的间隔进行的重复承诺或Ajax调用:
var cycle = function(func, interval){
var _this = this;
// Use jQuery's triggers to manage subscriptions
var o = $({});
this.publish = o.trigger.bind(o);
this.subscribe = o.on.bind(o);
this.unsubscribe = o.off.bind(o);
var call = function(func){
clearTimeout(_this.timeout);
func().done(function(response){
_this.publish('ajax:update', response);
_this.timeout = setTimeout(function(){
call(func);
}, interval);
});
};
call(func);
return this;
};
var ajax_promise = function(){
return $.getJSON('http://localhost/some/data.json');
};
var my_callback = function(response){
// Do stuff
};
cycle(ajax_promise, 10000).subscribe('ajax:update', my_callback);