ICanHaz.js - Possible to put a while loop in template?

可紊 提交于 2019-12-05 17:46:40
bostonou

icanhaz (moustache) does include a way to loop.

In javascript:

var listOfStuff = {stuff: [ 
                      {key: "1", desc: "First"},
                      {key: "2", desc: "Second"}
                  ]};
$("#mySelectBox").append(ich.myTemplate(listOfStuff));

In your view:

<script id="myTemplate" type="text/html">
  {{#stuff}}
    <option value="{{key}}">{{desc}}</option>
  {{/stuff}}
</script>

<select id="mySelectBox">
</select>

The {{#stuff}} and {{/stuff}} delimit the list. Look at the Sections part of moustache for details.

Edit: Make sure to check out this answer if you're using jQuery 1.9 or above.

I'm not sure about iCanHaz, but John Resig (creator of JQuery) posted this method on his blog:

See JavaScript Micro-Templating

A sneak peak...

<script type="text/html" id="user_tmpl">
  <% for ( var i = 0; i < users.length; i++ ) { %>
    <li><a href="<%=users[i].url%>"><%=users[i].name%></a></li>
  <% } %>
</script>

Nope. Can't be done. You need to render the html dynamically.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!