web-dev-qa-db-ja.com

emberjsスクリプトハンドルバーでコメントを行う方法は?

コメント付きのコードをemberjsハンドルバーテンプレートに含める方法を教えてもらえますか?

  <script id="restaurantDetail" data-template-name='restaurantDetail' type="text/x-handlebars">
//Commented code goes here
</script>
27
Kapil Garg

github page の外観から、{{! comment text here}}が必要です:

コメント

次の構文を使用して、テンプレートにコメントを追加できます。

{{! This is a comment }}

最終的に出力に含める場合は、実際のhtmlコメントを使用することもできます。

<div>
    {{! This comment will not end up in the output }}
    <!-- This comment will show up in the output -->
</div>
38
D.Shawley

このコメント構文には新しい行を含めることができ、コメント内に{{!-- comment here --}}を含めることができるため、}}を使用することをお勧めします。次に例を示します。

Bad comments:
    {{! badly commented {{if somecondition "red" "blue" }} }}  
    {{! badly multiline comments
        another line  }}  

Comment that works:
    {{!-- this is commented correctly {{if somecondition "red" "blue" }} --}}
    {{!-- correct multiline comments
        another line  --}}  

(これは古い質問ですが、emberテンプレートコメントを検索すると、この回答が最初にGoogleに表示されるので、将来の読者を支援したいと思いました)

17
Iftah