easyui Datagrid查询报错Uncaught TypeError:Cannot read property 'length' of undefined
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了easyui Datagrid查询报错Uncaught TypeError:Cannot read property 'length' of undefined相关的知识,希望对你有一定的参考价值。
1.问题描述
easyui中datagrid执行loadData方法出现如下异常:Cannot read property ‘length‘ of undefined
2.一开始怀疑是js或者页面的问题,然后从早上干到下午,网上各种方法用尽了就是不行!
最后发现规律了:
使用mybatis从数据库查询返回的List不报错,但是自己new的ArrayList总是报错!
后来发现原来mybatis返回的不是ArrayList!而是PageList!
3.解决问题
PageList中有个参数Paginator包含了page(当前页), limit(每页显示条数), totalCount(总记录数),但是ArrayList就没有这个参数了。
PageList是ArrayList的子类!
知道了原因,就好办了!把你new的ArrayList改成PageList!代码如下:
原代码:
- List<MsgInfo> list=new ArrayList<MsgInfo>();
修改后代码:
- Paginator paePaginator=new Paginator(page, pageSize, totalCount);
- List<MsgInfo> list=new PageList<MsgInfo>(paePaginator);
然后return list;
4.答题解惑
可能你用浏览器查看返回的json数据时看不到page(当前页), limit(每页显示条数), totalCount(总记录数)这些信息,但是easyUI能解析到!
原因可能是因为浏览器任务这些信息类似于请求的头信息一样直接过滤了所以你看不到,但是会返回给easyUI。
原文链接:http://blog.csdn.net/xuxile/article/details/50548285
以上是关于easyui Datagrid查询报错Uncaught TypeError:Cannot read property 'length' of undefined的主要内容,如果未能解决你的问题,请参考以下文章
EasyUI分页加载datagrid时候报错"Uncaught TypeError: Cannot read property 'length' of undefined&q