如何在backbone.js中使用额外值在视图中渲染集合
我想知道如何通过不属于任何模型的集合传递一些值?例如,在此示例中 http://jsfiddle.net/5ZaFa/20/ 我分配了标题视图并将整个集合传递给模板,并在该模板内循环该集合的每个模型。
- 是否可以不写像
items.models[x].attributes.id
这样的长变量,如果我能做这样的事情items[x][id]
就好了code> - 我知道可以为每一行和标题创建单独的视图。但我想将其保留在一种观点中。 你能给我推荐一下吗?有什么办法可以做到这一点吗?
如果有不清楚的地方,我会尽力提供更多信息。
谢谢,
I would like to know how should I pass some values with collection which is not part of any modele? For example in this example http://jsfiddle.net/5ZaFa/20/ I assigned the title of the view and passed whole collection to the template, and inside that template loop every model of that collection.
- Is it possible to not write long variables like
items.models[x].attributes.id
, it would be good if i could do something like thisitems[x][id]
- I know it would be possible to create separate views for every row and title. But I would like to keep it in one view.
Could you suggest me please? May be there any way to do this?
If something is not clear I will try to provide more information.
Thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不要传入 items.toJSON() ,而是传入一个具有您希望使用的名称的对象,然后使用这些名称来引用您希望在模板中引用的值。
然后,您的渲染函数将如下所示:
并将模板更改为如下所示:
这是修改后的 jsFiddle 的链接< /a>
Instead of passing in items.toJSON() pass in an object with the names you wish to use, then use the names to reference the values you wish to reference in your template.
Your render function will then look like this:
and change your template to look like this:
Here's a link to your modified jsFiddle