这是我对“未找到记录”回复的 JSON 响应。当我尝试检查“errorMsg”或“响应”时,它无法正常工作。这是我的 JSON 响应
{
"showItems" :
[
{
"errorMsg" : "NoRecordsFound",
"response" : "failed"
}
]
}
条件检查
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!");
}
}
如何检查情况?请帮我解决这个问题