我在我的项目中使用 jQGrid 最新版本。以下是我配置的完整配置。
jQuery("#list").jqGrid( {
url : 'Link.do?method=findAllBrand',
mtype : 'GET',
height : 350,
datatype : "xml",
colNames : [ 'Name' ],
colModel : [ {
name : 'name',
index : 'name',
width : 620
} ],
rowNum : 10,
rowList : [ 10, 20, 30 ],
sortname : 'id',
sortorder : "desc",
viewrecords : true,
multiselect : true,
imgpath : 'themes/base/images',
caption : "Brand (s) Summary Grid",
pager : $('#pager'),
cache : false,
onSelectRow : function(id) {
}
});
我从服务器以 xml 的形式获取以下数据:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?><rows><page>1</page><total>1</total><records>4</records><row id="BRD00003"><cell>Blanco</cell></row><row id="BRD00001"><cell>Bosch</cell></row><row id="BRD00004"><cell>Chef</cell></row><row id="BRD00002"><cell>F&P</cell></row></rows>
我知道在最后一行的最后一个单元格中产生了问题,因为它包含 & char,在 xml 中具有特殊含义。但是我已经使用 Apache commons lang library 使用下面的函数对整个 xml 进行了转义。
toXml = StringEscapeUtils.escapeXml(toXml);
结果字符串是
<?xml version="1.0" encoding="UTF-8" standalone="yes"?><rows><page>1</page><total>1</total><records>4</records><row id="BRD00003"><cell>Blanco</cell></row><row id="BRD00001"><cell>Bosch</cell></row><row id="BRD00004"><cell>Chef</cell></row><row id="BRD00002"><cell>F&P</cell></row></rows>
我仍然在 Mozilla firefox 最新版本和 chrome 中遇到同样的错误,即 7,8。
我必须向您展示网格中的这个特殊字符,所以我该如何解决这个问题?
谢谢你米希尔帕雷克