Backbone显示集合(集合可能是?)

时间:2012-10-22 20:22:32

标签: javascript collections backbone.js

js file;

var dataModel = Backbone.Model.extend({
            defaults : {
                dataID : 'unknown',
                text : 'unknown'
            }
        });
        var LinkCollection = Backbone.Collection.extend({
            model : dataModel
        });

假设集合大小为8.我想一次显示3个。由于脚本的结构,我需要将收集项划分为单独的div。

html文件;

<div class="item">
<div class="carousel-subItem">  <-- Collection item #1
   <span>{{dataID}}</span> <br /> <span>{{text}}</span>
</div>
<div class="carousel-subItem">  <-- Collection item #2
   <span>{{dataID}}</span> <br /> <span>{{text}}</span>
</div>
<div class="carousel-subItem">  <-- Collection item #3
   <span>{{dataID}}</span> <br /> <span>{{text}}</span>
</div>
</div>


<div class="item">
<div class="carousel-subItem">  <-- Collection item #4
   <span>{{dataID}}</span> <br /> <span>{{text}}</span>
</div>
<div class="carousel-subItem">  <-- Collection item #5
   <span>{{dataID}}</span> <br /> <span>{{text}}</span>
</div>
<div class="carousel-subItem">  <-- Collection item #6
   <span>{{dataID}}</span> <br /> <span>{{text}}</span>
</div>
</div>

<div class="item">
<div class="carousel-subItem">  <-- Collection item #7
   <span>{{dataID}}</span> <br /> <span>{{text}}</span>
</div>
<div class="carousel-subItem">  <-- Collection item #8
   <span>{{dataID}}</span> <br /> <span>{{text}}</span>
</div>
</div>

我很难动态创建这个html结构。 (因为集合大小可能会有所不同......结构应该完全动态等;

 {{#each dataModel}}
    // code goes here, to create the above structure.. 
 {{/each}}

1 个答案:

答案 0 :(得分:0)

也许这样的事可能会对你有所帮助:

<script type="text/tempalte" id="template">

<% var len = items.length, group = 3, i; %>
<% for (i = 0; i <len; i += 1) { %>
    <% if (i % group === 0) { %>
        <div class="item">
    <% } %>
        <div class="carousel-subItem"> 
            <span><%= items[i].dataID %></span> <br /> <span><%= items[i].text %></span>
        </div>
    <% if ((i % group === group-1) || (i === len -1)) { %>  
        </div>
    <% } %>
<% } %>
</script>

我假设您在使用Backbone时想要使用Underscore。 items集看起来像这样,应该接近Backbones的观点:

var items = [
    { dataID : '1', text : 'bla' },
    { dataID : '2', text : 'blab' },
    { dataID : '3', text : 'gulp' },
    { dataID : '4', text : 'golp' },
    { dataID : '5', text : 'bla' }
];

// compiling the template
var template = _.template($('#template').html());
console.log(template(items));

输出如下:

<div class="item">

        <div class="carousel-subItem"> 
            <span>1</span> <br /> <span>bla</span>
        </div>



        <div class="carousel-subItem"> 
            <span>2</span> <br /> <span>blab</span>
        </div>



        <div class="carousel-subItem"> 
            <span>3</span> <br /> <span>gulp</span>
        </div>

        </div>



        <div class="item">

        <div class="carousel-subItem"> 
            <span>4</span> <br /> <span>golp</span>
        </div>



        <div class="carousel-subItem"> 
            <span>5</span> <br /> <span>bla</span>
        </div>

        </div>

我可以补充一点,更好的方法是让一个ItemView呈现“carousel-subItem”-div和一个CollectionView,它负责将渲染的ItemViews组合成一个容器。我认为Backbone.Marionette就是这么做的。也许你想看一下。当然,你也可以自己构建类似的东西。