2012-08-31 12 views

答えて

2

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

+0

非常に良い答え – Sandeep

関連する問題