我只是想知道,这是否是正确/推荐的方法来省略Doctype,head和body标签?因为至少Django教程可以做到这一点,如tutorial 3所示, 在民意调查/ templates / polls / index.html中:
{% if latest_question_list %}
<ul>
{% for question in latest_question_list %}
<li><a href="/polls/{{ question.id }}/">{{ question.question_text }}</a></li>
{% endfor %}
</ul>
{% else %}
<p>No polls are available.</p>
{% endif %}
答案 0 :(得分:0)
包含所有必需的标签。与他们删除的教程一样,您可以专注于关键点,而不是通常的标签。不要在工作中省略所需的标签。为了学习,你可以。