程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
您现在的位置: 程式師世界 >> 編程語言 >  >> 更多編程語言 >> Python

Python django

編輯:Python

Django 從後台往前台傳遞數據時有多種方法可以實現。

模板
<html>
<head><title>Ordering notice</title></head>
<body>
<p>Dear {
{ person_name }},</p>
<p>Thanks for placing an order from {
{ company }}. It's scheduled to
ship on {
{ ship_date|date:"F j, Y" }}.</p>
<p>Here are the items you've ordered:</p>
<ul>
{% for item in item_list %}
<li>{
{ item }}</li>
{% endfor %}
</ul>
{% if ordered_warranty %}
<p>Your warranty information will be included in the packaging.</p>
{% endif %}
<p>Sincerely,<br />{
{ company }}</p>
</body>
</html>

在Python代碼中使用模板系統,請按照下面的步驟:
1,用模板代碼創建一個Template對象
Django也提供指定模板文件路徑的方式創建Template對象
2,使用一些給定變量context調用Template對象的render()方法
這將返回一個完全渲染的模板,它是一個string,其中所有的變量和塊標簽都會根據context得到值


  1. 上一篇文章:
  2. 下一篇文章:
Copyright © 程式師世界 All Rights Reserved