backbone.js:视图中影响集合中不同模型的按钮

发布于 2024-11-05 06:40:31 字数 229 浏览 1 评论 0原文

我刚刚开始使用backbone.js。到目前为止,我真的很喜欢它。

我有这样的东西:

  • ModelA
  • ModelB
  • ViewA
  • ViewB

ModelA 持有 ModelB 的集合

如何使用一个按钮构建 ModelB 的 ViewB ,单击该按钮会更改集合中下一个 ModelB 实例的属性?

I'm just getting going with backbone.js. So far, I'm really liking it.

I have something like this:

  • ModelA
  • ModelB
  • ViewA
  • ViewB

ModelA holds a collection of ModelB

How can I build a ViewB of ModelB with a button which, when clicked, changes an attribute on the next ModelB instance in the collection?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

梦开始←不甜 2024-11-12 06:40:31
var col = this.model.collection;
var nextModel = col.at( col.indexOf(this.model) + 1)
if(nextModel) nextModel.set({whatevar});

您不需要跟踪父集合,backbone 会为您做这件事。
您还应该检查您是否位于集合的末尾。

var col = this.model.collection;
var nextModel = col.at( col.indexOf(this.model) + 1)
if(nextModel) nextModel.set({whatevar});

You do not need to keep track of the parent collection, backbone does it for you.
You should check if you are at the end of the collection also.

变身佩奇 2024-11-12 06:40:31

我想我明白了一些事情。我会分享看看其他人的想法,以便其他人受益。

我只是将对父集合的引用传递给集合中的每个模型。

在我的集合中,添加新实例时:

var newModelBInstance = new ModelB( { id: "xxx", ParentCollection: this } );

然后,在我的 ModelB 视图中:

this.model.get("ParentCollection").at(this.model.sortValue + 1).set({ myAttr: false });

I think I figured something out. I'll share to see what others think so that others can benefit.

I simply pass in a reference to the parent collection to each model in the collection.

Inside my collection, when adding a new instance:

var newModelBInstance = new ModelB( { id: "xxx", ParentCollection: this } );

And then, inside my ModelB view:

this.model.get("ParentCollection").at(this.model.sortValue + 1).set({ myAttr: false });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文