Dojo callback before AJAX

Does Dojo xhrPost / xhrGet have an equivalent callback function like jQuery beforeSend ?

+5
source share
1 answer

You can use dojo/aspect.

aspect.before(dojo, "xhrGet", function(args){
    args.url = 'index.html?TEST';
    return [args];
});

var btn = new Button({label: 'xhr'}, 'btn');
on(btn, 'click', function(evt){
    var xhrArgs = {
        url: "index.html",
        handleAs: "text",
        load: function(data){ console.debug(data); },
        error: function(error){ console.error(error);}
    }
    dojo.xhrGet(xhrArgs);
});

http://dojotoolkit.org/reference-guide/1.7/dojo/aspect.html

+2
source

All Articles