当所有内容都加载到backbone.js中时,如何获取嵌套资源树并渲染视图?
背景
我从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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看一下:
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