亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

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

资讯| 乐亭县| 罗定市| 通辽市| 齐齐哈尔市| 北碚区| 临沭县| 云南省| 彰化市| 台中县| 太白县| 广灵县| 岳池县| 邮箱| 新兴县| 灵石县| 灵宝市| 米泉市| 于都县| 壶关县| 霍城县| 漾濞| 衡南县| 建阳市| 休宁县| 永川市| 东安县| 衡东县| 晴隆县| 昆明市| 林州市| 永康市| 高安市| 泰安市| 西乌| 启东市| 双桥区| 福建省| 湖州市| 独山县| 昌邑市|