开发人员在车把中发表评论,在客户端没有输出

Developer comments in handlebars with no output in client side

我正在使用 Express Handlebars 作为节点的模板引擎。 我知道有一个选项可以添加 HTML 评论,但是有没有办法添加不会在最终源上打印的开发人员评论?

这是我发现的:

{{! This comment will not be in the output }}
<!-- This comment will be in the output -->

但正在寻找:

{{! This comment should only be visible in the source file, not in the client side }}

类似于在视图中 PHP 中可以完成的操作:

<?php
/* Comment here */
?>

我最终创建了自己的把手助手:

Handlebars.registerHelper('comment', function(whatever) {
  return '';
});

这样我可以做到:

{{comment 'this field is here to indicate...'}}
<input type="hidden" name="demo" value="4554">

正确答案是:

{{!-- This comment won't get printed in this view --}}

https://handlebarsjs.com/guide/#template-comments