我想使用dojo消耗Restful web服務。 web服務的結果返回瀏覽器,但是當我嘗試使用XHR我總是得到一個空值獲得的結果,所以請幫助我在道場新...使用dojo消耗webservice
dojo.query("li").onclick(function(){
var xhrArgs = {
url: "http://192.168.1.65:9080/RAD8JAX-RSWeb/jaxrs/customers",
handleAs: "json",
headers: { "Content-Type": "application/json"},
load: function(data) {
alert("ok");
console.log(data);
},
error: function(error) {
console.log(error);
}
};
dojo.xhrGet(xhrArgs);
console.log("message sent ...");
});
當事件發生警報顯示,我得到「空」
你在上http://192.168.1.65:9080使得從HTML頁面的請求? – abraham 2012-02-27 19:07:17