Django 注释标签
注释
注释允许您拥有应被忽略的代码部分。
示例
<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 注释的信息。