0

我正在尝试在我的 Jqgrid 中渲染数据,但它只是没有显示出来。我的 Json 数据来自网络服务器,因此我尝试使用 Jsonreader 作为函数来格式化我的数据。请任何人指出我的错误。提前致谢。

这是我的 jqgrid 代码

jQuery(document).ready(function(){ 
jQuery("#grid").jqGrid({
url: 'localhost/webair/contactinfoes',
datatype: 'json',
ajaxGridOptions: { contentType: "application/json" },

colNames: ['Company','Firstname','Job Title','Last Update Time', 'Last Update User',
'Lastname', 'Uuid'],      
colModel: [
    { name: 'comapany', width: 100},
    { name: 'firstname', width: 60},
    { name: 'jobtitle', width: 100},
    { name: 'lastupdatetime', width: 250, align: 'right' },
    { name: 'lastupdateuser', width: 100, align: 'right' },
    { name: 'lastname', width: 60 },
    { name: 'uuid', width: 250},

],
jsonReader: {
repeatitems: false,
root: function (obj) { return obj; },
page: function (obj) { return 1; },
total: function (obj) { return 1; },
records: function (obj) { return obj.length; }
},
rowNum:10,
rowList:[10,20,30],
pager: '#pager10',
viewrecords: true,
caption:"Terry's table",
}).navGrid('#gridpager');
})

这是我的json信息;

[ {
"cel":"asdf",
"company":"adsf",
"fax":"asdf",
"firstname":"asdf",
"id":98304,
"jobTitle":"asdf",
"lastUpdateTime":1331831984277,
"lastUpdateUser":"anonymousUser",
"lastname":"berk",
"phone":"adsf",
"uuid":"2asa8a2-d2b5-48a2-ba35-b0cfasdf3170f",
"version":0}]
4

1 回答 1

1

结尾的小逗号错误colModel可能不是您遇到的主要错误。

实际使用您的代码的演示显示,应该显示网格。它没有显示你应该包括loadError回调函数(见答案)。我想您将遇到“解析错误”异常,这意味着您在服务器响应中得到错误的“Content-Type”HTTP 标头值。

于 2012-03-16T00:30:26.327 回答