国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

Python web開發(fā)筆記五:Django開發(fā)進(jìn)階一

Java_oldboy / 2243人閱讀

摘要:在第一次執(zhí)行循環(huán)時該變量為是一個布爾值在最后一次執(zhí)行循環(huán)時被置為。注冊自定義修改顯示字段管理后臺默認(rèn)顯示,在中添加返回值方法,修改顯示效果。

理解上下文
render(request,x.html,context)
request:請求的固定寫法。
x.html:模板,需要填補丁的模板。
context:上下文,填充模板的補丁。
模板的使用流程

寫模板,創(chuàng)建Template對象,用模板語言進(jìn)行修改。

創(chuàng)建Context,context是一組字典,用來傳遞數(shù)據(jù)給Template對象。

調(diào)用Template對象的render()方法傳遞context來填充模板。

創(chuàng)建并使用模板

多帶帶創(chuàng)建templates、staitc文件夾,將之前寫的前端文件如何放入Django項目。

網(wǎng)頁放入tempaltes,所有的靜態(tài)文件放入static中。(靜態(tài)文件是指網(wǎng)站中的 js, css, 圖片,視頻等)

修改setting,TEMPLATES,DIRS:[os.path.join(BASE_DIR,"templates").replace("","/")], (注意逗號不能夠少)

html最上方加入{% load staticfiles %},在模板中引入靜態(tài)文件,修改模板中的固定地址改為動態(tài)地址。({% static "css/semantic.css" %})

模板語言

模板語言分為:模板變量,模板標(biāo)簽,模板過濾器。

模板變量:

            
{{ value }},{{ Person.name }}

模板標(biāo)簽:

{% for item in list %}
    {{ item }}
{% endfor %}

{% for key, value in dict.items %}
    {{ key }}: {{ value }}
{% endfor %}

{% if today_is_weekend %}
    

Welcome to the weekend!

{% else %}

Get back to work.

{% endif %}

注:標(biāo)簽可以多重進(jìn)行嵌套。

其他:

{% forloop.first %}是一個布爾值。在第一次執(zhí)行循環(huán)時該變量為True
{% forloop.last %}是一個布爾值;在最后一次執(zhí)行循環(huán)時被置為True。

模板過濾器:

{{ value|default:"nothing" }} 如果為空則顯示nothing的樣式。
{{ value|truncatewords:200 }} 只顯示前200個字符。
{{ name|lower }} 功能是轉(zhuǎn)換文本為小寫。
案例

使用 django 的"日期字段"給每篇文章添加類似圖中的一個發(fā)布日期,格式是「2016-11-05」

model增加:
class Aritcle(models.Model):
    date = models.DateField(auto_now=True)

html增加:
{{ article.date|date:"Y-m-d" }}
模板繼承 extends標(biāo)簽

定義一個父模板為base.html,寫出HTML的骨架,將需要子塊修改的地方用{% block %}{% endblock %}標(biāo)出。
子模板使用{% extends "base.html" %}將內(nèi)容填寫進(jìn)這些空白的內(nèi)容塊。
模板繼承允許你建立一個基本的”骨架”模板, 它包含你所有最常用的站點元素并定義了一些可以被子模板覆蓋的block。
如果你需要在子模板中引用父模板中的 block 的內(nèi)容,使用 “{{ block.super }}“ 變量.這在你希望在父模板的內(nèi)容之后添加一些內(nèi)容時會很有用.(你不必完全覆蓋父模板的內(nèi)容.)

include標(biāo)簽

{% include %}該標(biāo)簽允許在(模板中)包含其它的模板的內(nèi)容。
標(biāo)簽的參數(shù)是所要包含的模板名稱,可以是一個變量,也可以是用單/雙引號硬編碼的字符串。
每當(dāng)在多個模板中出現(xiàn)相同的代碼時,就應(yīng)該考慮是否要使用 {% include %} 來減少重復(fù)。

stackoverflow問題:{% include %} vs {% extends %} in django templates?

Extending allows you to replace blocks (e.g. "content") from a parent template instead of including parts to build the page (e.g. "header" and "footer"). This allows you to have a single template containing your complete layout and you only "insert" the content of the other template by replacing a block.
If the user profile is used on all pages, you"d probably want to put it in your base template which is extended by others or include it into the base template. If you wanted the user profile only on very few pages, you could also include it in those templates. If the user profile is the same except on a few pages, put it in your base template inside a block which can then be replaced in those templates which want a different profile.

模板注釋

注釋使用{# #}注釋不能跨多行 eg: {# This is a comment #}

urls相關(guān) urls中定義鏈接(三種)
Function views
Add an import:  from my_app import views
Add a URL to urlpatterns:  url(r"^$", views.home, name="home")

Class-based views
Add an import:  from other_app.views import Home
Add a URL to urlpatterns:  url(r"^$", Home.as_view(), name="home")

Including another URLconf
Import the include() function: from django.conf.urls import url, include
Add a URL to urlpatterns:  url(r"^blog/", include("blog.urls"))
url的name屬性

url(r"^add/$", calc_views.add, name="add"),
這里的name可以用于在 templates, models, views ……中得到對應(yīng)的網(wǎng)址,相當(dāng)于“給網(wǎng)址取了個名字”,只要這個名字不變,網(wǎng)址變了也能通過名字獲取到。

url正則表達(dá)式
url(r"^(?Pd{4})/(?Pd{1,2})/$","get_news_list",name="news_archive" )

在view的參數(shù)獲得 如:def index(request,year,month)

url的include用法
(r"^weblog/", include("mysite.blog.urls")), 
(r"^photos/", include("mysite.photos.urls")),

指向include()的正則表達(dá)式并不包含一個$(字符串結(jié)尾匹配符)。每當(dāng)Django 遇到include()時,它將截斷匹配的URL,并把【剩余】的字符串發(fā)往被包含的 URLconf 作進(jìn)一步處理。

創(chuàng)建使用后臺

使用django自帶的后臺,可以可視化管理后臺的數(shù)據(jù)。

創(chuàng)建超級管理員
python manage.py createsuperuser # 設(shè)置用戶名,密碼。
注冊自定義model
from models import People
admin.site.register(People)
修改顯示字段

管理后臺默認(rèn)顯示People Obejct,在model中添加返回值方法,修改顯示效果。

  def __str__(self):
      return self.name 
修改后臺密碼的方法
  python manage.py createsuperuser --username admin
  python manage.py changepassword admin
admin顯示自定義字段
  from django.contrib import admin
  from .models import Article

  class ArticleAdmin(admin.ModelAdmin):
      list_display = ("title","pub_date","update_time",)
    
  admin.site.register(Article,ArticleAdmin)
引入數(shù)據(jù)

Django ORM對數(shù)據(jù)庫進(jìn)行操作,數(shù)據(jù)庫操作完成之后,記得要進(jìn)行save()保存。

數(shù)據(jù)庫操作
Article.objects.all() 獲取表中所有對象
Aritcle.objects.get(pk=1) # Django中pk=primary key,和id等價。
Article.objects.filter(pub_date__year=2006) # 使用過濾器獲取特定對象
Article.objects.all().filter(pub_date__year=2006) #與上方一致

## 鏈?zhǔn)竭^濾
>>> Aritcle.objects.filter(
...     headline__startswith="What"
... ).exclude(
...     pub_date__gte=datetime.date.today()
... ).filter(
...     pub_date__gte=datetime(2005, 1, 30)
... )

Article.objects.create(author=me, title="Sample title", text="Test") #創(chuàng)建對象
Person.objects.get_or_create(name="WZT", age=23) # 防止重復(fù)很好的方法

Article.objects.all()[:5] 記錄前5條 
Person.objects.all().reverse()[:2] # 最后兩條
Person.objects.all().reverse()[0] # 最后一條

>>> Post.objects.filter(title__contains="title") # 包含查詢
[, ] 
# 注在title與contains之間有兩個下劃線字符 (_)。
# Django的ORM使用此語法來分隔字段名稱 ("title") 和操作或篩選器("contains")。

Post.objects.order_by("-created_date") # 對象進(jìn)行排序,默認(rèn)升序,添負(fù)號為降序。
Person.objects.filter(name__iexact="abc") # 不區(qū)分大小寫
Person.objects.filter(name__exact="abc") # 嚴(yán)格等于

Person.objects.filter(name__regex="^abc")  # 正則表達(dá)式
Person.objects.filter(name__iregex="^abc") # 不區(qū)分大小寫

Person.objects.exclude(name__contains="WZ")  # 排除
Person.objects.filter(name__contains="abc").exclude(age=23
 #找出名稱含有abc, 但是排除年齡是23歲的
QuerySet創(chuàng)建對象的四種方法
Author.objects.create(name="WeizhongTu", email="tuweizhong@163.com

twz = Author(name="WeizhongTu", email="tuweizhong@163.com")
twz.save()

twz = Author()
twz.name="WeizhongTu"
twz.email="tuweizhong@163.com"

Author.objects.get_or_create(name="WeizhongTu", email="tuweizhon“)
# 返回值(object, True/False)
QuerySet是可迭代的
es = Entry.objects.all()
for e in es:
    print(e.headline)
檢查對象是否存在
Entry.objects.all().exists() 返回布爾值

拓展閱讀:
課堂操作內(nèi)容文檔

備注
該筆記源自網(wǎng)易微專業(yè)《Python web開發(fā)》1.2節(jié)
本文由EverFighting創(chuàng)作,采用 知識共享署名 3.0 中國大陸許可協(xié)議進(jìn)行許可。

文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請注明本文地址:http://specialneedsforspecialkids.com/yun/38533.html

相關(guān)文章

  • Python

    摘要:最近看前端都展開了幾場而我大知乎最熱語言還沒有相關(guān)。有關(guān)書籍的介紹,大部分截取自是官方介紹。但從開始,標(biāo)準(zhǔn)庫為我們提供了模塊,它提供了和兩個類,實現(xiàn)了對和的進(jìn)一步抽象,對編寫線程池進(jìn)程池提供了直接的支持。 《流暢的python》閱讀筆記 《流暢的python》是一本適合python進(jìn)階的書, 里面介紹的基本都是高級的python用法. 對于初學(xué)python的人來說, 基礎(chǔ)大概也就夠用了...

    dailybird 評論0 收藏0
  • Python測試開發(fā)Django和Flask框架的區(qū)別

    摘要:在談中框架和框架的區(qū)別之前,我們需要先探討如下幾個問題。通過大數(shù)據(jù)統(tǒng)計分析全球著名的網(wǎng)站對和這兩個框架的調(diào)查分析。從全球著名的代碼托管平臺上的和數(shù)量上分別為,分別為。 在談Python中Django框架和Flask框架的區(qū)別之前,我們需要先探討如下幾個問題。 一、為什么要使用框架? showImg(https://segmentfault.com/img/remote/14600000...

    B0B0 評論0 收藏0
  • Python爬蟲學(xué)習(xí)路線

    摘要:以下這些項目,你拿來學(xué)習(xí)學(xué)習(xí)練練手。當(dāng)你每個步驟都能做到很優(yōu)秀的時候,你應(yīng)該考慮如何組合這四個步驟,使你的爬蟲達(dá)到效率最高,也就是所謂的爬蟲策略問題,爬蟲策略學(xué)習(xí)不是一朝一夕的事情,建議多看看一些比較優(yōu)秀的爬蟲的設(shè)計方案,比如說。 (一)如何學(xué)習(xí)Python 學(xué)習(xí)Python大致可以分為以下幾個階段: 1.剛上手的時候肯定是先過一遍Python最基本的知識,比如說:變量、數(shù)據(jù)結(jié)構(gòu)、語法...

    liaoyg8023 評論0 收藏0
  • Python - 收藏集 - 掘金

    摘要:首發(fā)于我的博客線程池進(jìn)程池網(wǎng)絡(luò)編程之同步異步阻塞非阻塞后端掘金本文為作者原創(chuàng),轉(zhuǎn)載請先與作者聯(lián)系。在了解的數(shù)據(jù)結(jié)構(gòu)時,容器可迭代對象迭代器使用進(jìn)行并發(fā)編程篇二掘金我們今天繼續(xù)深入學(xué)習(xí)。 Python 算法實戰(zhàn)系列之棧 - 后端 - 掘金原文出處: 安生??? 棧(stack)又稱之為堆棧是一個特殊的有序表,其插入和刪除操作都在棧頂進(jìn)行操作,并且按照先進(jìn)后出,后進(jìn)先出的規(guī)則進(jìn)行運作。 如...

    546669204 評論0 收藏0
  • 我的第本 gitbook: Flask Web 開發(fā)筆記

    摘要:月份發(fā)布了第版,收到不少網(wǎng)友的良好建議,所以又抽空進(jìn)行了完善,當(dāng)然也拖了不少時間。本書主要介紹的基本使用,這也是我一開始在學(xué)習(xí)過程中經(jīng)常用到的。第章實戰(zhàn),介紹了如何開發(fā)一個簡單的應(yīng)用。聲明本書由編寫,采用協(xié)議發(fā)布。 showImg(https://segmentfault.com/img/remote/1460000007484050?w=200&h=152); 書籍地址 head-f...

    KevinYan 評論0 收藏0

發(fā)表評論

0條評論

最新活動
閱讀需要支付1元查看
<