js文件;

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}}

最佳答案

也许这样的事情可以帮助您:

<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>


我可能会补充说,一种更好的方法是拥有一个呈现“ carousel-subItem” -div的ItemView和一个将呈现的ItemViews组合到一个容器中的CollectionView。我认为Backbone.Marionette就是这样。也许您想查看一下。当然,您也可以自己构造类似的东西。

07-22 21:41