Web方法返回两级JSON结果(在kendoUI数据源中)

时间:2013-08-13 10:32:22

标签: asp.net json web-services

这是服务器端代码

[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返回值

enter image description here

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

1 个答案:

答案 0 :(得分:1)

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

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

请尝试使用以下链接,可能会对您有所帮助。 How to bind JSON child array to Kendo grid