我是 jQuery/jqGrid 的新手。我想从 asmx Web 服务返回 json 格式的数据并在 jqGrid 中显示数据。网格正在页面上呈现,但它不包含任何数据行。我不确定我是否返回了 jqGrid 正在寻找的正确格式。或者,如果我错过了其他东西。
(我遇到了许多与该主题相关的 SO 问题,所以如果已经回答,我提前道歉。在这一点上,即使是可用的不同答案的数量也会造成进一步的混乱)。
网络服务
<System.Web.Script.Services.ScriptService()> _
<WebService(Namespace:="http://tempuri.org/")> _
<WebServiceBinding(ConformsTo:=WsiProfiles.BasicProfile1_1)> _
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Public Class WebService1
Inherits System.Web.Services.WebService
Public Class Person
Public FirstName As String
Public LastName As String
End Class
<WebMethod()>
<ScriptMethod(UseHttpGet:=False, ResponseFormat:=ResponseFormat.Json)> _
Public Function GetPersonList() As List(Of Person)
Dim personList As New List(Of Person)
'Connect to DB
'While reading from DB
personList.Add(
New Person() With {
.FirstName= dr("fname"),
.LastName = dr("lastName")
})
'Does personList need to be converted to a different format?
Return personList
End Function
End Class
ASPX 页面
jQuery("#list1").jqGrid({
url: "http://localhost/WebService1.asmx/GetPersonList",
datatype: "json",
mtype: 'POST',
colNames: ['FirstName', 'LastName'],
colModel: [
{ name: 'FirstName', index: 'FirstName', width: 90 },
{ name: 'LastName', index: 'LastName', width: 90 }
],
rowNum:10,
rowList: [10,20,30],
pager: '#pager1',
viewrecords: true,
caption: "Person List"
});