Django comment 注释标签
注释
注释允许您包含应该忽略的代码部分。
实例
<h1>Welcome Everyone</h1>
{% comment %}
<h1>Welcome ladies and gentlemen</h1>
{% endcomment %}
运行实例 »
注释说明
您可以在注释中添加一条消息,以帮助您记住您写注释的原因,或作为给阅读代码的其他人的消息。
实例
为您的注释添加描述:
<h1>Welcome Everyone</h1>
{% comment "this was the original welcome message" %}
<h1>Welcome ladies and gentlemen</h1>
{% endcomment %}
运行实例 »
小注释
您还可以在注释掉代码时使用 {# ... #}
标签,这对于较小的注释会更容易阅读:
视图中的注释
视图是用 Python 编写的,Python 注释是用 #
字符编写的:
实例
注释掉视图中的一个部分:
from django.http import HttpResponse
from django.template import loader
def testing(request):
template = loader.get_template('template.html')
#context = {
# 'var1': 'John',
#}
return HttpResponse(template.render())
运行实例 »
在 Python 注释教程中了解更多关于 Python 注释的信息。