0
這裏是我的JSON響應爲「沒有找到記錄」 reply.When我嘗試檢查「ERRORMSG」或「響應」它不是propely working.Here我 JSON響應JSON響應處理
{
"showItems" :
[
{
"errorMsg" : "NoRecordsFound",
"response" : "failed"
}
]
}
條件cheking
success: function (response)
{
var respObj = Ext.JSON.decode(response.responseText);
alert(respObj[0].response);//here it does not retutning anyting
if(respObj[0].response=="Success")
{
Ext.getCmp('itemList').setData(respObj.showItems);
}
if(respObj[0].response=="failed")
{
Ext.Msg.alert("Alert!","No records found!");
}
}
如何檢查的條件?請幫我解決這個
感謝名單及其工作 – Fazil