注释允许您包含应该被忽略的代码部分。
<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 的注释 in outPython 注释教程。
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!