简体   繁体   中英

Defining Handler Functions in a Prototye

I am trying to create a JavaScript prototype that will allow me to handle the outcome of a process in a similar way to the jQuery ajax call works. For example:

var request = $.ajax({
    //params here
})
.done(function(data, textStatus, jqXHR) {
    //action here
})
.fail(function (jqXHR, textStatus, errorThrown) {
    //action here
});

How do I declare my prototype to have the done and fail events (if that is even the correct term to use) and make sure that they are fired under a condition from within the prototype logic?

My desired call would be something like this:

var o = myObj({
    parma1: 'a',
    param2: 'b'
})
.done(function() {
    //action here
});
.fail(function() {
    //action here
});

I hope this makes sense as I do not know what the correct terminologies are for this process :(

I am using jQuery so if there is a better solution using jQuery then that is fine.

I suppose you want to use this for an asyncrhonous task. Here is a somewhat similar solution:

var o = {
    parma1: 'a',
    param2: 'b',
    doAsyncStuff: function(complete, error){

        var someData = 0;        

        setTimeout(function(){
            someData = 1;
            complete(someData);
        }, 500);

        //or if something went wrong:
        //error(someErrorData);
    }
}

o.doAsyncStuff(function(data){
    console.log('complete', data);
}, function(data){
    console.log('error', data);
});

http://jsfiddle.net/pA99q/1/

As requested, an updated version using deferred objects. I took myself the freedom to include progress as well, in case you might need it:

var task = (function($){

    var dfd = $.Deferred(),
        cls = function(){

            console.log('param passed:', arguments);

            for(var i = 0; i < 5; i++){

                var count = 0;

                setTimeout(function(){   

                    count++;

                    dfd.notify({ msg: 'interation ' + count + ' complete' });

                    if(count === 5)
                        dfd.resolve({ something: 1 });

                    //if anything goes wrong, 
                    //you can always reject the deferred:
                    //dfd.reject(args); 

                }, 1000 * i);

            }
        };

    cls.prototype = {
        done: dfd.promise().done,
        fail: dfd.promise().fail,
        always: dfd.promise().always,
        progress: dfd.promise().progress
    };

    return cls;

})(jQuery);

var t = new task({ foo: 'bar' }, 123, 'baz');

t.progress(function(data){
    console.log('progress:', data);
}).done(function(){
    console.log('done');
}).fail(function(){
    console.log('fail');
}).always(function(){
    console.log('always');
});

http://jsfiddle.net/hGFbt/

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM