如何“获取”使用backbone.js 嵌套模型和集合
我有一个模型,有 2 个嵌套集合。当我“获取”父模型时自动获取这些集合的最佳方法是什么?
I have a model which has 2 nested collections. What's the best way of automatically fetching those collections when I "fetch" the parent model?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Rails 中,您可以在 JSON 中包含依赖对象。我不知道您正在使用的后端,但这将为您节省一些往返时间:
否则,覆盖模型的初始化以创建并获取 2 个新的依赖集合。
In Rails you can include the dependant objects in your JSON. I do not know the backend you are using, but this would save you a couple round trips:
Otherwise, override the initialize of Model to create and fetch the 2 new dependent collections.