扩展淘汰赛可观察数组

发布于 2024-12-29 13:07:22 字数 225 浏览 0 评论 0原文

我想向 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

祁梦 2025-01-05 13:07:22

扩展 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文