当所有内容都加载到backbone.js中时,如何获取嵌套资源树并渲染视图?

发布于 2024-12-19 18:16:02 字数 455 浏览 0 评论 0原文

背景

我从restful api获得了这个结构:

/channels/
/channel/{channelId}/
/channel/{channelId}/programs

在我的backbone.js中,我有一个集合Channels和两个模型,Channel< /code> 和 程序

问题

如何轻松获取嵌套模型结构,并在加载所有内容后在 ProgramGuideView 中调用渲染函数?

到目前为止我所拥有的

到目前为止,我能够获取频道,但我没有想出任何好方法来获取每个频道的节目。

Background

I have this structure from a restful api:

/channels/
/channel/{channelId}/
/channel/{channelId}/programs

In my backbone.js I have a collection Channels and two models, Channel and Program.

Problem

How can I easily fetch a nested model structure, and call a render function in my ProgramGuideView when all content is loaded?

What I have so far

So far I'm able to fetch the channels, but I don't come up with any good way to fetch the programs for each channel.

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

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

发布评论

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

评论(1

断桥再见 2024-12-26 18:16:02

看一下:

http://documentcloud.github.com/backbone/#FAQ-nested

这是一种非常简单的嵌套模型和集合的方法,但可以进行调整以支持您的任何需求。如果您需要更复杂的关系管理,那么您应该考虑使用如下插件:

https://github.com/ PaulUithol/Backbone-关系

Take a look into this:

http://documentcloud.github.com/backbone/#FAQ-nested

This is a very simple approach for having nested models and collections, but can be tuned to support any of your needs. If you need more sophisticated relational management then you should consider using a plugin like this:

https://github.com/PaulUithol/Backbone-relational

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