Underscore.js模板从对象迭代循环

时间:2014-09-02 19:29:54

标签: jquery templates underscore.js underscore.js-templating

我有一个模态

的模板

<div class="ui-modal">
  <div class="mask"></div> 
  <div class="ui-modal-container">
    <div class="ui-modal-header">
      <h3><%= modal['title'] %></h3>
    </div>
    <div class="ui-modal-text">
      <p><%= modal['description'] %></p>
    </div>
    <% if ( modal['buttons'] !== 'undefined' ) { %>
      <div class="ui-button-container">
        <a class="ui-button ui-button-pill <%= modal['buttons'][0]['extra_class'] %> " href="<%= modal['buttons'][0]['href'] %>">
          <span class="label">
            <span class="section"><%= modal['buttons'][0]['label'] %></span> 
          </span>
        </a>
      </div>
    <% } %>
  </div>
</div>

这是我试图填充它的数据:

_data = {
 "modal" : {
    "title" : "Your address is:",
    "description" : "Some desc here",
    "buttons" : [
       {'extra_class': 'small left', 'href' : '#register/3', 'label' : 'Back'},
       {'extra_class': 'small center', 'href' : '#register/4',  'label' : 'Next'},
       {'extra_class': 'small right', 'href' : '#', 'label' : 'Reset'}
     ]
   }
 }

我想要实现的是一个迭代,我已经&#34;硬编码&#34; &lt;%= modal [&#39; buttons&#39;] [0] [&#39; extra_class&#39;]%&gt;中的索引(0)。我认为这是一个简单的问题,但不幸的是,我可以找到任何我可以在我的案例中应用的内容。

任何帮助将不胜感激!

谢谢!

1 个答案:

答案 0 :(得分:9)

Underscore模板中<% ... %>内的内容只是JavaScript。这意味着您可以像在其他任何地方一样迭代数组:for - 循环,_.eachforEach,...

典型的Underscore-ish方式是:

<% if(modal['buttons']) { %>
  <div class="ui-button-container">
    <% _(model['buttons']).each(function(button) { %>
      <a class="ui-button ui-button-pill <%= button.extra_class %> " href="<%= button.href %>">
        <span class="label">
          <span class="section"><%= button.label %></span> 
        </span>
      </a>
    <% }) %>
  </div>
<% } %>

您还可以使用简单的for - 循环:

<% if(modal['buttons']) { %>
  <div class="ui-button-container">
    <% for(var i = 0; i < model.buttons.length; ++i) { %>
      <a class="ui-button ui-button-pill <%= model.buttons[i].extra_class %> " href="<%= model.buttons[i].href %>">
        <span class="label">
          <span class="section"><%= model.buttons[i].label %></span> 
        </span>
      </a>
    <% } %>
  </div>
<% } %>