我正在学习 ember.js,有时想停用一些代码块。我知道{{! }}
适用于内部的单行评论<script type="text/x-handlebars">
,但我不能让它适用于多行评论。也许是因为我里面有条件语句。
<script type="text/x-handlebars" id="stuff">
{{!
{{#if length}}
foobar
{{/if}}
}}
</script>
但后来我得到了这个错误:
Uncaught Error: Parse error on line xx:
...ngth}} foobar {{/if}}}} {{ o
---------------------^
Expecting 'EOF', got 'OPEN_ENDBLOCK'
我也尝试使用<!-- ... -->
,虽然该部分未显示,但我也收到此错误:
未捕获的错误:无法对不在 DOM 中的 Metamorph 执行操作
如果我只是删除那段代码,则不会出现此错误。