0

这是服务器端代码

[System.Web.Services.WebMethod]
    public static object GetDevelopers()
    {
        return new DqListViewModel(DQContext.Service._IDqs_IssueRepository.SelectList().ToArray(), 10);
    }

查看模型

public class DqListViewModel
{
    public Array Data { get; set; }

    public int Count { get; set; }

    public DqListViewModel(Array data, int count)
    {
        this.Data = data;
        this.Count = count;
    }
}

这是 JSON 返回值

在此处输入图像描述

为什么 JSON 结果具有低级对象。我不应该有“d”级别?

4

1 回答 1

1

请检查以下链接。http://encosia.com/a-break-change-between-versions-of-aspnet-ajax/

这不是 Knedo-ui 的问题,而是 Asp.net 的功能

请尝试使用以下链接,可能会对您有所帮助。 如何将 JSON 子数组绑定到 Kendo 网格

于 2013-08-14T09:50:09.830 回答