我正在使用sencha touch来查询返回文本数据的Web服务器。
我目前的代码如下:
Ext.Ajax.request({
url: 'get/log',
method: 'GET',
success: function (result, request) {
alert("Success");
Ext.getCmp('logText').setValue(request)
},
failure: function (result, request) {
alert("FAILED");
Ext.getCmp('logText').setValue(request)
}
});
这不符合预期,因为我在文本区域看到[object Object]
。
服务器正在发送以下内容(例如)。
[17 Oct 10:41:53] Beacon off
[17 Oct 10:41:53] Beacon on
是否有人对如何最好地开展这项工作有任何建议/经验。
答案 0 :(得分:0)
您可以在result.responseText
中获取服务器响应。无论如何,您应该在success函数中设置断点并检查服务器返回的内容和位置。