赞
踩
后台打印的数据如下:Ext.Ajax.request({ url:'data/delete.php?opt=ckilist', method:'post', params:{ tb_ckiSign:ckiRecord.get('tb_ckiSign') }, success:function(response, options){ var responseArray = Ext.util.JSON.decode(response.responseText); Ext.Msg.alert('提示信息',responseArray.msg); } });
{'success':'true','msg':'删除成功'}
然后,前台无法获取后台的值,此外在firebug中报错:TypeError: Ext.util.JSON is undefined
var responseArray = Ext.JSON.decode(response.responseText);
就是将 util删除掉。问题产生的原因也许是因为Extjs4 和Extjs3等做了变动。请大家注意。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。