在Kendo UI中将kendo.data.Model与dataSource一起使用有什么好处?

时间:2012-11-01 12:09:38

标签: kendo-ui

我是kendo UI的新手,我不完全了解在dataSource中使用kendo.data.Model的主要目标和优势。

1 个答案:

答案 0 :(得分:0)

我不确定我是否理解你的问题。但是数据源是抽象交互的好方法,例如twitter:

var dataSource = new kendo.data.DataSource({
transport: {
    read: {
        // the remote service url
        url: "http://search.twitter.com/search.json",

        // JSONP is required for cross-domain AJAX
        dataType: "jsonp",

        // additional parameters sent to the remote service
        data: {
            q: "html5"
        }
    }
},
// describe the result format
schema: {
    // the data which the data source will be bound to is in the "results" field
    data: "results"
}
});