当我使用 jsrender 模板引擎时,我想在代码中添加一些注释,但是我找不到注释标记。
我知道我可以使用 html 注释,但我根本不希望这些注释在 html 上呈现,所以这<!-- -->
是不可取的。
所以,我想要的是:
<script id="row-template" type="text/x-jsrender">
{{// some comment that will not be rendered}}
{{if #data[0]}}
<tr>
{{for #data tmpl="#some-template"/}}
</tr>
{{/if}}
</script>