-1
我是kendo UI的新手,我不完全明白在dataSource中使用kendo.data.Model的主要目標和優勢。在Kendo UI中使用帶有dataSource的kendo.data.Model有什麼好處?
我是kendo UI的新手,我不完全明白在dataSource中使用kendo.data.Model的主要目標和優勢。在Kendo UI中使用帶有dataSource的kendo.data.Model有什麼好處?
不太確定,如果我理解你的問題。但數據源是一個很好的方式來抽象您的互動,例如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"
}
});
這太糟糕了,這是倒票。這是一個有效的問題。我從未使用數據模型作爲數據源的一部分。我想知道爲什麼我應該。 –