当前位置:   article > 正文

24、Ext.util.JSON is undefined 问题的解决方案_undefined" is not valid json

undefined" is not valid json
关于Extjs通过Ajax提交后,返回值为json类型的问题的解决:
问题:

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等做了变动。请大家注意。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小舞很执着/article/detail/978824
推荐阅读
相关标签
  

闽ICP备14008679号