问题描述
我是在action里面添加属性来自动传输json的private Integer len;private String root;public String findAllStu() throws ParseException, IOException {List<Student> stus = studentService.getAllStu();len = stus.size();root = JsonUtil.listToJson(stus, "student_list");return "list";}struts.xml中:<action name="studentAction^*" class="cn.edu.jmu.judgeOnline.action.StudentAction"method="{1}"><result name="list" type="json"></result></action>前台接收数据:{"len":1,"root":"[{'studentId':'180','studentName':'张三','classInfo.classId':'140','studentNo':'JM123456','sex':'0','birthday':'2014-05-01','address':'','tel':'','email':'','mobilephone':'','userInfo.userId':'1'}]"}js中的接收store:var store = new Ext.data.Store({ proxy: new Ext.data.HttpProxy({url:"studentAction^findAllStu"}), reader: new Ext.data.JsonReader({ totalProperty: 'len', root: 'root' }, [ {name: 'studentName'} ]) });觉得是数据的格式不对,就是store中的root应该是一个数组类型的,而我传过去的是一个字符串,这个怎么解决?
解决方案
private String root;这里你已经把root定义为String了,接收到的当然是String。看你的要求root应该是一个json类型的数组,所以应该让JsonUtil.listToJson()这个方法返回一个数组
解决方案二:
应该不是json格式的问题即使你json数据多也无所谓的,root:[{}]有一个studentName 这个属性就可以了你在看看你其他的程序问题
解决方案三:
用eval将字符串转换成JSON对象