Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个带有函数和数据源的可观察模型。
我不能通过数据源使用模板中的函数。
http://dojo.telerik.com/oHoxi
kendo.data.DataSource 不是数组;正确的 API 方法是add:
add
dataSource.add(...);
(演示)
同样的问题:
this.get("products") // this is not an array, yet you treat it like one
如果要获取数据,请使用 DataSource.data() 方法:
this.get("products").data()