この記事では、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>
Plus 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 中国語 Web サイトの他の関連記事を参照してください。