欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

详解python如何在前端显示后端的信息

程序员文章站 2022-04-30 16:58:54
...
这篇文章详解python如何在前端显示后端的信息

首先在test.html中需要添加如下:

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

后端代码:

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

在前端html中循环后端的代码:

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

再加上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>

如果代码量太大,排错的话可以装个django-debugtools

pip install django-debugtools

以上就是详解python如何在前端显示后端的信息的详细内容,更多请关注其它相关文章!

相关标签: Python