如何“获取”使用backbone.js 嵌套模型和集合

发布于 2024-11-08 17:58:27 字数 51 浏览 0 评论 0原文

我有一个模型,有 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 技术交流群。

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

发布评论

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

评论(1

虚拟世界 2024-11-15 17:58:27

在 Rails 中,您可以在 JSON 中包含依赖对象。我不知道您正在使用的后端,但这将为您节省一些往返时间:

{
  att1: val,
  col1: [{obj1: val}, {...}],
  col2: [{...}]
}

否则,覆盖模型的初始化以创建并获取 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:

{
  att1: val,
  col1: [{obj1: val}, {...}],
  col2: [{...}]
}

Otherwise, override the initialize of Model to create and fetch the 2 new dependent collections.

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