如何在backbone.js中使用额外值在视图中渲染集合

发布于 2024-12-19 08:23:23 字数 405 浏览 0 评论 0原文

我想知道如何通过不属于任何模型的集合传递一些值?例如,在此示例中 http://jsfiddle.net/5ZaFa/20/ 我分配了标题视图并将整个集合传递给模板,并在该模板内循环该集合的每个模型。

  1. 是否可以不写像 items.models[x].attributes.id 这样的长变量,如果我能做这样的事情 items[x][id] 就好了code>
  2. 我知道可以为每一行和标题创建单独的视图。但我想将其保留在一种观点中。 你能给我推荐一下吗?有什么办法可以做到这一点吗?

如果有不清楚的地方,我会尽力提供更多信息。

谢谢,

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.

  1. Is it possible to not write long variables like items.models[x].attributes.id, it would be good if i could do something like this items[x][id]
  2. 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 技术交流群。

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

发布评论

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

评论(1

北笙凉宸 2024-12-26 08:23:23

不要传入 items.toJSON() ,而是传入一个具有您希望使用的名称的对象,然后使用这些名称来引用您希望在模板中引用的值。

然后,您的渲染函数将如下所示:

render: function() {
            template= _.template($('#list_template').html());
            $(this.el).html(template({
                items : this.collection.toJSON(),
                title : "Title of the listing"
            }));
            $('#list_container').html(this.el);
        }

并将模板更改为如下所示:

<% for(x in items) { %>
   <li><%= items[x].id %> - <%= items[x].name %></li>
<% } %>

这是修改后的 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:

render: function() {
            template= _.template($('#list_template').html());
            $(this.el).html(template({
                items : this.collection.toJSON(),
                title : "Title of the listing"
            }));
            $('#list_container').html(this.el);
        }

and change your template to look like this:

<% for(x in items) { %>
   <li><%= items[x].id %> - <%= items[x].name %></li>
<% } %>

Here's a link to your modified jsFiddle

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