我正在尝试为响应 XML 的 ReST 应用程序编写一个基于浏览器的 Javascript 客户端(因此 JSONP 似乎是不可能的)。
我正在尝试使用检索数据,dojo.io.script.get
但传递给回调函数的参数是一个对象,我似乎无法从中检索响应的 XML 数据。
dojo.io.script.get({url:"http://enterpriseapp.enterprisedomain/path/to/rest/collection",
load:function (data) {
// 'data' does not contain the actual response (which is XML)
}
});
检索此数据的正确方法是什么?