我刚开始研究 Kendo UI,我为 MVC Web 应用程序项目创建了一个 Kendo UI,并创建了一个视图,该视图将在网格中显示用户列表,用户的数据是从我创建的 Azure Web 服务中检索的。
我遇到的问题是有一个语法错误,说标签无效。这是 Firebug 正在捕获的 json
{
"Meta": {
"Method": "GetUsuarios",
"Status": "ok"
},
"Response": [
{
"ApellidoM": "TestInfo1",
"ApellidoP": "TestInfo1",
"CreatedDateTime": "/Date(1357763187027-0600)/",
"Nombre": "TestInfo1",
"Password": "TestInfo1",
"UpdatedDateTime": "/Date(1357763187027-0600)/",
"UserName": "TestInfo1",
"UsuarioId": 1
},
{
"ApellidoM": "TestInfo2",
"ApellidoP": "TestInfo2",
"CreatedDateTime": "/Date(1357863418857-0600)/",
"Nombre": "TestInfo2",
"Password": "TestInfo2",
"UpdatedDateTime": "/Date(1357863418857-0600)/",
"UserName": "TestInfo2",
"UsuarioId": 2
}
]
}
我在 JSONLint.com 上对其进行了测试,它是一个有效的 json 字符串,这是我创建 DataSource 并填充网格的 javascript 函数:
$(function () {
var ds = new kendo.data.DataSource({
transport: {
read: {
url: "http://127.0.0.1:81/SismosService.svc/usuario/index",
dataType: "jsonp"
}
},
schema: {
data: "Response"
},
});
$("#usuariosGrid").kendoGrid({
columns: ["Nombre", "ApellidoP", "ApellidoM"],
dataSource: ds
});
});
这是我的观点:
<!DOCTYPE html>
<html>
<head >
<link href="<%: Url.Content("~/Content/kendo/2012.3.1114/kendo.common.min.css")%>" rel="stylesheet" type="text/css" />
<link href="<%: Url.Content("~/Content/kendo/2012.3.1114/kendo.default.min.css")%>" rel="stylesheet" type="text/css" />
<title><%: ViewBag.GestionTitle %></title>
</head>
<body>
<h1><%: ViewBag.GestionTitle %></h1>
<div id="usuariosGrid"></div>
<button id="addUsuario" type="button" class="k-input"><%: ViewBag.Agregar %></button>
<script src="<%: Url.Content("~/Scripts/jquery-1.7.1.min.js")%>"></script>
<script src="<%: Url.Content("~/Scripts/kendo/2012.3.1114/kendo.web.min.js")%>"></script>
<script src="<%: Url.Content("~/Scripts/usuario/usuario.js")%>"></script>
</body>
</html>
如您所见,我想做的事情很简单,那为什么会失败呢?我的 Web 服务在我创建的 ResponseObject 中发送用户列表,该类如下所示:
[DataContract]
public class ResponseObject<T>
{
public ResponseObject(T[] Response, MetaObject Meta)
{
this.Response = Response;
this.Meta = Meta;
}
[DataMember]
public T[] Response { get; set; }
[DataMember]
public MetaObject Meta { get; set; }
}
Meta 只是我创建的另一个类,只是为了在我的 Web 服务增长时添加更多信息,并且需要将新信息发送到客户端。
这是在我的界面中定义获取用户的方法的方式:
[WebGet(UriTemplate = "/usuario/index",
RequestFormat = WebMessageFormat.Json,
ResponseFormat = WebMessageFormat.Json,
BodyStyle = WebMessageBodyStyle.Bare)]
ResponseObject<Usuarios> GetUsuarios();
我收到此错误是什么?我发送用户的方式是否错误?