我是 jqgrid 的新手,需要加载 xml 数据并在浏览器上显示。我有如下对象
Object
id
xmldata
attribute1
attribute2
attribute3
attribute4
我的网页中有 json 作为
jq("#grid").jqGrid({
url:'/url',
datatype: 'json',
mtype: 'GET',
colNames:['Id', 'xml data', 'attribute1', 'attribute2', 'attribute3', 'attribute4'],
colModel:[
{name:'id',index:'id', width:55,editable:false,editoptions:{readonly:true,size:10},hidden:true},
{name:'XMLData',index:'xmldata', width:100,editable:true, editrules:{required:true}, editoptions:{size:10}},
{name:'attribute1',index:'attribute1', width:100,editable:true, editrules:{required:true}, editoptions:{size:10}},
{name:'attribute2',index:'attribute2', width:100,editable:true, editrules:{required:true}, editoptions:{size:10}},
{name:'attribute3',index:'attribute3', width:100,editable:true, editrules:{required:true}, editoptions:{size:10}},
{name:'attribute4',index:'attribute4', width:100,editable:true, editrules:{required:true}, editoptions:{size:10}},
],
但 xmldata 属性未加载,页面上加载了其他数据。我知道请求正文是 json 类型而不是 xml。但我有混音器 json 和 xml 数据。如何获取使用 json 类型显示的 xml 数据。或者我们有任何警觉。我需要将 xml 属性显示为一列,一列位于另一列之下。
谢谢