代码之家  ›  专栏  ›  技术社区  ›  nonopolarity

在HAML中,如何在:javascript区域中编写注释,以便注释不会显示给公众?

  •  8
  • nonopolarity  · 技术社区  · 14 年前

    在HAML中,我们可以使用

    -# some comment and it won't become HTML and made public
    

    但如果它在里面

    :javascript
      -# comments like this line will break the javascript interpreter as it becomes javascript code
      // so we are forced to use comment like this and is publicly viewable
    

    有没有办法让它非公开化?

    2 回复  |  直到 11 年前
        1
  •  12
  •   Vasfed    12 年前

    #{}

    #{ # this is a ruby comment, but still a comment (newline is required)
    }
    
        2
  •  6
  •   Natalie Weizenbaum    14 年前

    简而言之:没有。

    :javascript