0
我在一個函數中創建了一個AJAX請求。但是,我不知道如何返回JSON結果 - 任何人都可以告訴我如何?如何在Sencha Touch中獲得服務器JSON響應?
function getData(arg1, arg2, arg3){
Ext.Ajax.request({
url: 'getData.php',
params: {
arg1: arg1,
arg2: arg2,
arg3: arg3
},
method: 'POST',
success: function(response, opts) {
var jsonData = Ext.util.JSON.decode(response.responseText);
console.log(jsonData); <-- Can see the result here!
},
failure: function(response, opts) {
console.log('server-side failure with status code ' + response.status);
}
});
return /jsonData/ <-- Here is the value I want?!
}
感謝您的快速反應。是的,我理解你的意思,但我的目標是獲得從服務器返回的值,並且此值'jsonData'將用於另一個函數進行計算。我怎樣才能做到這一點? – hunteryxx
@ user888022查看更新 – ZenMaster
感謝ZenMaster,我真的很感謝你的解釋。有沒有機會通過使用商店來完成這種任務? – hunteryxx