首頁  >  文章  >  後端開發  >  詳解python如何在前端顯示後端的訊息

詳解python如何在前端顯示後端的訊息

高洛峰
高洛峰原創
2017-03-10 19:08:092168瀏覽

這篇文章詳解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",{&#39;xianshi&#39;: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如何在前端顯示後端的訊息的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn