【问题标题】:mustache template reuse possible?胡子模板重用可能吗?
【发布时间】:2014-05-28 08:31:39
【问题描述】:

请帮助我重用一个模板中应该出现在另一个模板中的部分小胡子代码。

{{#pageone}}
   code here
{{/pageone}}

以上代码应该出现在其他小胡子模板中

【问题讨论】:

    标签: jquery mustache


    【解决方案1】:

    看看https://github.com/janl/mustache.js/#partials

    例如这个模板和部分:

    base.mustache:<h2>Names</h2>{{#names}} {{> user}} {{/names}}

    user.mustache:<strong>{{name}}</strong>

    可以认为是一个单独的扩展模板:

    <h2>Names</h2> {{#names}} <strong>{{name}}</strong> {{/names}}

    【讨论】:

      【解决方案2】:

      无法从模板重用 我们可以通过在当前页面中添加需要的页面来添加代码

      【讨论】:

        猜你喜欢
        • 1970-01-01
        • 2011-10-14
        • 2012-04-18
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        相关资源
        最近更新 更多