这是民意测验教程的直接内容,我是编程,学习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 %}

最佳答案

如上所述,它是Django模板语言(花括号中的内容),并且因为它是模板,所以它在HTML中。

关于javascript - Django Polls Tutorial第3部分:polls/templates/polls/index.html-这是什么代码?不是python,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34299533/

10-12 20:24