Maison >développement back-end >Tutoriel Python >Explication détaillée de la façon dont Python affiche les informations back-end sur le front-end

Explication détaillée de la façon dont Python affiche les informations back-end sur le front-end

高洛峰
高洛峰original
2017-03-10 19:08:092195parcourir

Cet article explique en détail comment python affiche les informations back-end sur le front-end

Tout d'abord, vous devez ajouter ce qui suit à test.html :

<html>
<body>
<h1>下面是后端返回的内容</h1>
 
{{ xianshi }}
 
</body>
</html>

Retour- code de fin :

import datetime
from django.shortcuts import render_to_response
def current(request):
    now=datetime.datetime.now()
    return render_to_response("test.html",{&#39;xianshi&#39;:now})

Bouclez le code back-end dans le code HTML front-end :

<html>
<body>
<h1>下面是后端返回的内容</h1>
 
{% for i in xianshi %}
{{ i }}
{% endfor %}
 
</body>
</html>

Ajoutez l'instruction if :

<html>
<body>
<h1>下面是后端返回的内容</h1>
 
{% for i in xianshi %}
  {% if "2" in i %}
      <p style="color:red">{{ i }}</p>
  {% else %}
      <p style="color:green">{{ i }}</p>
   {% endif %}
{% endfor %}
 
</body>
</html>

Si le la quantité de code est trop importante, vous pouvez installer django- debugtools

pip install django-debugtools


Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!

Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn