我是kendo UI的新手,我不完全了解在dataSource中使用kendo.data.Model的主要目标和优势。
答案 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"
}
});