91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

django url和返回內容到html

發布時間:2020-07-16 15:20:57 來源:網絡 閱讀:3208 作者:獅子XL 欄目:開發技術

文章思維導圖

django url和返回內容到html


nav.html, bottom.html, #html


base.html

<!DOCTYPE html>
<html>
<head>
    <title>{% block title %}默認標題{% endblock %} - lanny教堂</title>
</head>
<body>
{% include 'nav.html' %}
//定義塊,以后模版繼承base后可以替換.
{% block content %}
<div>這里是默認內容,所有繼承自這個模板的,如果不覆蓋就顯示這里的默認內容。</div>
{% endblock %}
 
{% include 'bottom.html' %}
{% include '#html' %}
</body>
</html>


home.html繼承且覆蓋base

{% extends 'base.html' %}

{% block title %}歡迎光臨首頁{% endblock %}

{% block content %}
{% include 'ad.html' %}
這里是首頁,歡迎光臨
{% endblock %}


包含語法

{% include 'bottom.html' %}

{% block content %}
{% include 'ad.html' %}
{% endblock %}



字符串

views.py
def home(request):
    string = u"我在lanny教堂學習Django,用它來建網站"
    return render(request, 'home.html', {'string': string})
home.html
{{ string }}


列表:

views.py
def home(request):
    TutorialList = ["HTML", "CSS", "jQuery", "Python", "Django"]
    return render(request, 'home.html', {'TutorialList': TutorialList})
在視圖中我們傳遞了一個List到模板 home.html:
教程列表:
{% for i in TutorialList %}
{{ i }}
{% endfor %}

home.html

教程列表:

{% for i in TutorialList %}
{{ i }}
{% endfor %}


字典

views.py

def home(request):
    info_dict = {'site': u'lanny教堂', 'content': u'各種IT技術教程'}
    return render(request, 'home.html', {'info_dict': info_dict})
home.html

法1:

站點:{{ info_dict.site }} 內容:{{ info_dict.content }}
法2:遍歷
{% for key, value in info_dict.items %}
    {{ key }}: {{ value }}
{% endfor %}


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

博湖县| 洛南县| 泽库县| 响水县| 红原县| 吴旗县| 黄平县| 疏勒县| 达孜县| 海原县| 临夏县| 大邑县| 建始县| 莲花县| 马公市| 都昌县| 肇州县| 砚山县| 五常市| 旬邑县| 农安县| 莱芜市| 富源县| 柯坪县| 嵊州市| 资阳市| 广昌县| 固始县| 洪雅县| 康马县| 宝鸡市| 库尔勒市| 鄂伦春自治旗| 静安区| 陈巴尔虎旗| 惠安县| 泗洪县| 营口市| 西城区| 甘肃省| 江永县|