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",{'xianshi':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!