这直接来自民意调查教程,我是编程新手,学习Python和Django,这对我来说并不熟悉。这是JavaScript吗?我是否也需要学习这种学习Django的语言?
轮询/模板/轮询/ 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 :(得分:1)
如上所述,它是Django模板语言(花括号中的东西)而且因为它是一个模板,所以它在HTML中。
答案 1 :(得分:0)
每条评论都是:Django模板语言
https://docs.djangoproject.com/en/1.9/topics/templates/#the-django-template-language
答案 2 :(得分:0)
This is Django templating engine ( just like jinja in Flask). The stuffs under curly braces "{}" takes the values from views.py in app and present to html file.