javascript模板庫jsrender for迴圈嵌套樣本

來源:互聯網
上載者:User

標籤:for迴圈   type   ges   下一代   end   images   charset   前端   render   

最近在參與整合前端的架構,我們知道javascript最強大的模板引擎之一當屬jsrender,號稱下一代jquery模板引擎的標準實現。

通常在模板merge的過程中,我們會遇到兩次乃至三級嵌套的情形,強大的jsrender自然會支援,如下所示:

<!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <script type="text/javascript" src="jquery-1.11.1.min.js"></script>    <script type="text/javascript" src="jsrender.js"></script>    <title>jsrender nest demo</title></head><body><div id="studentList">abc</div><script type="text/x-jsrender" id="studentTemplate">    {{for #data}}        <h3>{{:name}}</h3>        <ul>        {{for language}}            <li>            {{:#parent.parent.data.name}} is learning {{:title}}<br/>            {{for scores}}                <a href="#">{{:score}}</a>            {{/for}}            </li>        {{/for}}        </ul>    {{/for}}</script><script type="text/javascript">    var students = [{name:"張三",language:[{title:"中",scores:[{score:12},{score:13},{score:14}]},{title:"英",scores:[{score:12},{score:13},{score:14}]},{title:"數",scores:[{score:12},{score:13},{score:14}]}]},                    {name:"李四",language:[{title:"中",scores:[{score:12},{score:13},{score:14}]},{title:"中",scores:[{score:12},{score:13},{score:14}]},{title:"中",scores:[{score:12},{score:13},{score:14}]}]},                    {name:"王五",language:[{title:"中",scores:[{score:12},{score:13},{score:14}]},{title:"中",scores:[{score:12},{score:13},{score:14}]},{title:"中",scores:[{score:12},{score:13},{score:14}]}]}];    $("#studentList").html($("#studentTemplate").render(students));</script></body></html>

效果如下:

 

javascript模板庫jsrender for迴圈嵌套樣本

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.