easyui的datagrid翻页停止响应

发布于 2022-08-28 12:08:23 字数 1508 浏览 10 评论 0

大概情况:服务器端使用S2SH框架,前端是easyui的datagrid控件在前端显示数据,分页能够正常加载,但是每次翻到第8页就停止响应,不仅仅是网页无响应,整个应用失去响应,tomcat无报错信息,有没有可能是缓存的问题?那应该怎么清缓存呢?

代码描述:
1. 后台返回json对象的函数

    @SuppressWarnings("unchecked")
public String listContactsData() {
    dataMap = new HashMap<String, Object>();
    System.out.println(page+" "+rows);
    contactList = contactDAO.findAllByPage(page, rows);
    dataMap.put("total", contactDAO.findAll().size());
    dataMap.put("rows", contactList);
    return SUCCESS;
}

2. 前端easyui代码

<table id="contacttable" title="联系人" style="width:1024px;height:auto" data-options="
            fitColumns:true,
            singleSelect:true,
            iconCls: 'icon-edit',
            idField:'id',
            url:'./listContactsData.action?randnum='+Math.floor(Math.random()*1000000),
            toolbar: '#toolbar',
            method: 'post',
            pageSize:20,   
            pageNumber:1,
            pagination:true">
    <thead>
        <tr>
            <th data-options="field:'id'">序号</th>
            <th data-options="field:'name',width:100,
                    editor:{
                        type:'text',
                        options:{required:true}
                        }">姓名</th>
        </tr>
    </thead>

</table>  
  1. datagrib的实现代码(js)

    $(function(){
    $('#contacttable').datagrid();
    });

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

没︽人懂的悲伤 2022-09-04 12:08:23

应该是只有表格失去响应吧?然后刷下一下就好了?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文