您好,登錄后才能下訂單哦!
這篇文章將為大家詳細(xì)講解有關(guān)Python中Django框架中標(biāo)簽語法是什么,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。
由%}和 {% 來定義的,例如:{%tag%} {%endtag%},完整的標(biāo)簽有開始就有結(jié)束,如條件語句,有條件判斷的開始,也對應(yīng)有條件的結(jié)束。
if條件判斷
if/elif/else:可以使用and/or/in/not/==/!=/<=/>=,來進(jìn)行判斷。ifequal/ifnotequal
for循環(huán)
for ... in ...:和python中的用法一樣。
forloop.counter:當(dāng)前迭代的次數(shù),下標(biāo)從1開始。1,2,3....
forloop.counter0:當(dāng)前迭代的次數(shù),下標(biāo)從0開始。指定下標(biāo),上面一種不指定的默認(rèn)從1開始
forloop.revcounter:與forloop.counter一樣,不同在于下標(biāo)呈倒序,從大到小。
forloop.revcounter0:forloop.counter0一樣,不同在于下標(biāo)呈倒序,從大到小。
forloop.frist:返回一個(gè)布爾值,如果是第一次迭代,返回true,否則返回false。
forloop.last:返回布爾值,如果是最后一次迭代,返回true,否則返回false
forloop.parentloop:如果發(fā)生多層for循環(huán)嵌套,那么這個(gè)變量返回的是上一層的for。
for...in...empty...:如果沒有數(shù)據(jù),跳到empty中。
其他重要標(biāo)簽
load:加載第三方標(biāo)簽。常見用的是{% load static%}
url:返回一個(gè)命名了的URL的絕對路徑。
with:緩存一個(gè)變量。
autoescape:開啟和關(guān)閉自動(dòng)轉(zhuǎn)義。
if條件標(biāo)簽代碼例子
# views.py文件 def testif(request): complex = { 'name':'python', } return render(request,'標(biāo)簽-if.html',complex) # urls.py文件 urlpatterns = [path('testif/', views.testif),]
<!--if標(biāo)簽?zāi)0逦募?-> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>if模板</title> <style>span{font-size: 40px;color: #d70b35;}</style> </head> <body> {% if name == "python" %} 這是<span>{{name}}</span>頁面 {% elif name == "django" %} 這是<span>{{name}}</span>頁面 {% else %} 確定是<span>{{name}}</span>嗎? {% endif %} </body> </html>
for 循環(huán)標(biāo)簽代碼例子
# views.py文件 def testfor(request): ls = ['1','2','3','4','5'] complex ={ 'ls':ls, } return render(request,'標(biāo)簽-for.html',complex) # urls.py文件 urlpatterns = [path('testfor/', views.testfor),]
<!--for標(biāo)簽?zāi)0逦募?-> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>for模板</title> <style>a{font-size: 25px;}</style> </head> <body> {% for i in ls %} {% if forloop.counter == 3 %} <a href="https://www.baidu.com" rel="external nofollow" >百度</a><br> {% else %} <a href="https://blog.csdn.net/" rel="external nofollow" >CSDN</a><br> {% endif %} {% endfor %} </body> </html>
url頁面轉(zhuǎn)換標(biāo)簽例子
注意:親測。。。使用url頁面轉(zhuǎn)換標(biāo)簽的時(shí)候,注意模板中的引用模板鏈接名稱應(yīng)該是urlpatterns中path的name的值,如果是直接使用接口名稱會(huì)報(bào)錯(cuò)
錯(cuò)誤演示
正確演示
代碼
## views.py文件 def testurl(request): return render(request,'URL頁面轉(zhuǎn)換.html') ## urls.py 文件 urlpatterns = [path('testurl/', views.testurl),]
<!-- url標(biāo)簽?zāi)0逦募?nbsp; --> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>URL頁面轉(zhuǎn)換</title> <style> a{font-size: 25px;color: #10e59d } </style> </head> <body> <a href="/index/" rel="external nofollow" >index模板</a><br> <a href="{% url 'temp' %}" rel="external nofollow" >使用ur標(biāo)簽temp模板</a><br> <a href="{% url 'test' 999 %}" rel="external nofollow" >使用url標(biāo)簽進(jìn)行添加參數(shù)傳遞</a> </body> </html>
Django模版引擎中最強(qiáng)大也是最復(fù)雜的部分就是模版繼承了。使用模板的作用在于提高代碼的復(fù)用性。 模版繼承可以讓你創(chuàng)建一個(gè)基本的“骨架”模版,它包含您站點(diǎn)中的全部元素,并且可以定義能夠被子模版覆蓋的 blocks。
模板繼承使用extends標(biāo)簽實(shí)現(xiàn)。通過使用block來給子模板開放接口。
1、extends必須是模板中的第一個(gè)出現(xiàn)的標(biāo)簽。
2、子模板中的所有內(nèi)容,必須出現(xiàn)在父模板定義好的block中,否則django將不會(huì)渲染。
3、如果出現(xiàn)重復(fù)代碼,就應(yīng)該考慮使用模板。
4、盡可能多的定義block,方便子模板實(shí)現(xiàn)更細(xì)的需求。
5、如果在某個(gè)block中,要使用父模板的內(nèi)容,使用block.super獲取。
代碼例子
<!-- 模板的引用頁 --> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>引用頁</title> <style> .p2{ font-size: 25px; color: blue; } </style> </head> <body> <h >這是引用頁的內(nèi)容</h> </body> </html>
<!-- 模板的繼承頁 --> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>{% block title %}默認(rèn)標(biāo)題{% endblock %}</title> <style> .p1{font-size: 30px;color: #8dff50 } span{ font-size: 25px; color: darkkhaki; } </style> </head> <body> {% block content %} <span>這是默認(rèn)內(nèi)容</span> {% endblock %} {% block demo %} <span>這是演示內(nèi)容</span> {% endblock %} </body> </html>
<!-- 模板繼承的主頁 --> {% extends '模板/繼承頁.html' %} {% block title %}主頁(繼承與引用){% endblock %} {% block content %} <p class="p1">這是通過繼承父類的:{{ block.super }}</p><br> <p class="p1">這是子模版的內(nèi)容,沒有寫block就不會(huì)顯示</p><br> {% endblock %} {% block demo %} <p class="p2">這是通過include引用的其他模板的內(nèi)容:{% include '模板/引用頁.html' %}</p> {% endblock %}
演示結(jié)果
通過設(shè)置css樣式,可以看出,繼承主頁繼承和引用了繼承模板文件及引用模板文件中的css樣式。
關(guān)于“Python中Django框架中標(biāo)簽語法是什么”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),請把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。