您现在的位置是:课程教程文章
django注释有什么作用
2023-12-18 23:13课程教程文章 人已围观
Django模板template(html)中使用注释comment。
下面是Django注释符及实例
单行注释:
使用 {# #} 单行注释,例如:
{# Everything you see here is a comment. It won't show up in the HTML output. #}
多行注释:
{% comment %} this is a comment {% endcomment %}
英文解释:Ignores everything between {% comment %} and {% endcomment %}。
官方解释:
课程教程:django注释有什么作用
上一篇:Python中的变量与常量
下一篇:没有了