我正在使用*.html
Google App Engine 中的基本文件。
如何输入不会产生 html 评论的评论?例如在 Rails我会做<%# comment %>
另外,我如何检测它是一个开发环境(或检查 url 是否为 localhost),因此只触发某个 html 块?例如在 Rails 中我会这样做:
<% if Rails.env.development? %>
<p>comment visible only in localhost!</p>
<% end %>
谢谢!