2014-02-27 92 views

回答

3

有效地在心裏的<% %>是CoffeeScript的(ECO =嵌入式的CoffeeScript)。 CoffeeScript中的註釋使用#字符來評論一行(而多行註釋爲###)。見coffeescript - How to comment? "/* this */" doesn't work

所以在ECO你會這樣評論:

<% #This is a single line comment %> 

如果您檢查源代碼ECO templates你可以看到,在處理註釋情況scanner.js正則表達式。

Scanner.modePatterns = { 
     data: /(.*?)(<%%|<%\s*(\#)|<%(([=-])?)|\n|$)/, 
     code: /(.*?)((((:|(->|=>))\s*))?%>|\n|$)/, 
     comment: /(.*?)(%>|\n|$)/ 
    }; 
1

有意見徵求,即一個特殊的標籤,<%# %>

例子:

<%# This is a single line comment %>