handlebars.js – 如何在胡子模板中添加注释?

前端之家收集整理的这篇文章主要介绍了handlebars.js – 如何在胡子模板中添加注释?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在我的Mustache模板中,我想评论几行,但我无法做到.我仍然在 HTML显示评论.添加评论的正确方法是什么?有人可以帮我解决这个问题吗?

这是我的代码

<script type="text/html" id="inspector-splitViewBase">
    <div class="inspector-split-view-container flex-1 flex-fill flex-down">
        <header class='split-view-inspector-header'>
            <div class="view-title">Source Assets</div>
            {{!--  <div class="actions"> commented 
                <span class="label">Actions</span>
                <span class="gear"></span>
            </div> --}} - comment is not working
        </header>
        <div class='search-container'>
            <span class="search-icon"></span>
            <input type="text" value="" class="inspector-search" />
        </div>
        <div class="source-assets-list-container flex-1"></div>
        <footer></footer>
    </div>
</script>

解决方法

Mustache documentation建议使用以下评论
Comments begin with a bang and are ignored. The following template:
    <h1>Today{{! ignore me }}.</h1>

Will render as follows:    
    <h1>Today.</h1>

Comments may contain newlines.

我认为在你的情况下你必须使用

{{! blah }}

代替

{{!--  blah --}}
原文链接:https://www.f2er.com/js/150445.html

猜你在找的JavaScript相关文章