0

我尝试了针对这个问题给出的解决方案。但是,它仍然无法正常工作。我觉得 JSON 响应的格式不正确。

在struts2中实现了JQGrid。在操作中创建一个用户列表,并使用 struts.xml 中的结果类型作为 json 以 json 类型返回。

这是我得到的Json,

{"JSON":"success","userList":[{"fName":"abi","lName":"babu"},{"fName":"abi1","lName":"babu1"},{"fName":"abi2","lName":"babu2"},{"fName":"abi3","lName":"babu3"},{"fName":"abi4","lName":"babu4"},{"fName":"abi5","lName":"babu5"},{"fName":"abi6","lName":"babu6"}]}

JSP 页面是,

 <script type="text/javascript">
    $(function () {
        'use strict';
        $("#datagrid").jqGrid({
            url: "json-table",
            datatype: "json",
            colNames:['fName','lName'],
            colModel:[
                {name:'fName',index:'fName', key:true, width:100,editable:true,editoptions:{size:10}},
                {name:'lName',index:'lName', width:100,editable:true},
            ],
            rowNum:10,
            rowList:[3,6],
            loadonce: true,
            pager: '#navGrid',
            sortname: 'fName',
            sortorder: "asc", 
            height: "auto", //210,
            width:600,
            onSelectRow: function(id) {
                var getID = $(this).jqGrid('getCell', id, 'fName');
            },
            viewrecords: true,
            caption:"JQ GRID"
        });
    });
</script>

任何帮助将不胜感激。谢谢。

4

1 回答 1

0

您只需要包含jsonReader与输入数据格式相对应的参数:

jsonReader: {root: "userList", repeatitems: false}

请参阅演示

于 2012-11-06T06:16:58.513 回答