扩展淘汰赛可观察数组
我想向 ko.observableArray() 添加一些类似“ArrayCollection”的功能;
IE removeItemAt(index)//调度项目删除事件 addItem(item)//调度项目添加事件 等等
我注意到在大多数 ko 示例中,这是在模型中处理的。我有一个相当丰富的模型,其中包含类型化集合,因此希望将其嵌套在集合/数组本身中。
这种方法适合 ko 吗?
I'd like to add some "ArrayCollection" like functionality to a ko.observableArray();
i.e
removeItemAt(index)//dispatches item removed event
addItem(item)//dispatches item added event
etc
I notice in most of the ko examples this is handled in the model. I have a fairly rich model with typed collections so would like to nest this in the collection/array itself.
Is this approach advisable with ko?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
扩展 observableArrays 很简单,而且完全合理。
实现此目的的最简单方法是将函数添加到 ko.observableArray.fn 中。现在有一个针对此技术的文档页面。
这与您所追求的有点不同,但这是您可能感兴趣的 ko 字典的一个很好的实现: https://github.com/jamesfoster/knockout.observableDictionary
Extending
observableArrays
is easy and a perfectly reasonable thing to do.The easiest way to accomplish this is to add functions to
ko.observableArray.fn
. There is now a documentation page for this technique.This is a little bit different than what you are after, but here is a nice implementation of a dictionary in ko that may be of interest to you: https://github.com/jamesfoster/knockout.observableDictionary