19

在我的 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>
4

2 回答 2

26

Mustache文档建议使用以下注释:

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 --}}
于 2015-06-05T17:43:40.557 回答
1

您正在尝试对其中也包含 html 的 mustache 模板进行评论,因此您实际上必须在 mustache 代码所在的位置添加 mustache 注释,并在 html 代码所在的位置添加 html 注释。

.

于 2020-10-01T20:45:21.723 回答