gpt4 book ai didi

handlebars.js - 如何在 mustache 模板中添加评论?

转载 作者:行者123 更新时间:2023-12-04 02:02:16 24 4
gpt4 key购买 nike

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

关于handlebars.js - 如何在 mustache 模板中添加评论?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19517905/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com