-1

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

4

1 回答 1

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"
}
});
于 2012-11-01T15:43:42.587 回答