jqGrid - colNames 和 <> colModel 的长度!错误

jqGrid - Length of colNames and <> colModel! error

当我使用下面的这段代码时,出现 "Length of colNames and <> colModel!" 错误。如果 isUserGlobal 为假,我不会收到任何错误。我正在使用 jqGrid-4.5.4

receivedColModel.push({name:'NAME', index:'NAME', sortable:true});
receivedColModel.push({name:'SURNAME', index:'SURNAME', sortable:true});
receivedColModel.push({name:'AGE', index:'AGE', sortable:true});
receivedColModel.push({name:'STATUS', index:'STATUS', sortable:true});

receivedColNames.push(messageDictionary['userHistory.NAME']);
receivedColNames.push(messageDictionary['userHistory.SURNAME']);
receivedColNames.push(messageDictionary['userHistory.AGE']);
receivedColNames.push(messageDictionary['userHistory.STATUS']);

if(isUserGlobal == 'true') {
    receivedColModel.push({name:'CITY', index:'CITY', sortable:true});
    receivedColNames.push(messageDictionary['userHistory.CITY']);
}

$('#historyGrid').jqGrid({
     url:'ajax.htm',
     datatype: "json",
     mtype: "POST",
     jsonReader: { repeatitems : false, cell:"", id: "", userdata: "jsonModel", root: "rows" },
     postData:postData,
     colNames:receivedColNames,
     colModel:receivedColModel,
     .
     .
     .

顺便说一下,如果我不使用 colNames 作为参数,如下所示,程序可以成功运行。我不明白,为什么会出现这种情况。非常感谢。

receivedColModel.push({name:'NAME', index:'NAME', sortable:true, label:messageDictionary['userHistory.NAME']});
receivedColModel.push({name:'SURNAME', index:'SURNAME', sortable:true, label:messageDictionary['userHistory.SURNAME']});
receivedColModel.push({name:'AGE', index:'AGE', sortable:true, label:messageDictionary['userHistory.AGE'});
receivedColModel.push({name:'STATUS', index:'STATUS', sortable:true, label:messageDictionary['userHistory.STATUS']});

if(isUserGlobal == 'true') {
    receivedColModel.push({name:'CITY', index:'CITY', sortable:true});
}

$('#historyGrid').jqGrid({
    url:'ajax.htm',
    datatype: "json",
    mtype: "POST",
    jsonReader: { repeatitems : false, cell:"", id: "", userdata: "jsonModel", root: "rows" },
    postData:postData,
    colModel:receivedColModel,
    .
    .
    .

您没有包含 jqGrid 的真实参数。很明显,您使用 receivedColModelreceivedColNames 来构建 colNames 和 colModel`。我猜你的问题的根源在这一部分(在你的问题文本中我们没有看到的那一部分)。

你完全可以不用colNames。取而代之的是,您可以针对 colModellabel 属性 指定列 header。你不会有任何劣势。顺便说一下,如果 index 属性 的值与 name 属性 的值相同,则不需要 index 属性。 sortable 属性 的默认值为 true 并且您也可以删除 sortable:true