kendo.data.dataSource 对象和 kendo 小部件的数据源字段的对象有什么区别

what is the difference between kendo.data.dataSource object and object for dataSource field of kendo widget

我研究过 kendo UI 框架。 我发现 kendo 小部件的数据源字段可以是对象、数组或 kendo.data.dataSource 对象。 这些制作Kendo小部件的过程有什么不同吗?

dataSource 选项中使用对象、数组或数据源初始化小部件没有区别。小部件无论如何都会在内部创建一个数据源。

来自docs

If the dataSource option is set to a JavaScript object or array the widget will initialize a new kendo.data.DataSource instance using that value as data source configuration.

If the dataSource option is an existing kendo.data.DataSource instance the widget will use that instance and will not initialize a new one