色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

django做分頁功能

劉姿婷2年前18瀏覽0評論

django做分頁功能?

不用from django.conf.urls import patterns, include, url# Uncomment the next two lines to enable the admin:# from django.contrib import admin# admin.autodiscover()urlpatterns = patterns('',# Examples:# url(r'^$', 'nowamagic.views.home', name='home'),# url(r'^nowamagic/', include('nowamagic.foo.urls')),# Uncomment the admin/doc line below to enable admin documentation:# url(r'^admin/doc/', include('django.contrib.admindocs.urls')),# Uncomment the next line to enable the admin:# url(r'^admin/', include(admin.site.urls)),)前面也談過,只要配置這么一條規(guī)則:[python] view plain copy print?(r'^hello/$', hello),就可以定義 /hello/ 路徑顯示 views.py 中的 hello 函數(shù)。模式包含了一個尖號(^)和一個美元符號($)。這些都是正則表達式符號,并且有特定的含義:上箭頭要求表達式對字符串的頭部進行匹配,美元符號則要求表達式對字符串的尾部進行匹配。^hello/$ 匹配 hello/ 字符串,即在網(wǎng)址 hello/ 找到 hello/ 后,使用 hello() 函數(shù)顯示出來,如果沒有'$'結尾,則網(wǎng)址中輸入 hello1/;hello2/ 都會對應以 hello() 函數(shù)顯示出來。hello 函數(shù)我們隨便寫寫:[python] view plain copy print?from django.http import HttpResponse,Http404def hello(request): #每個視圖函數(shù)至少要有一個參數(shù),通常被叫作request。return HttpResponse("Hello NowaMagic!") #一個視圖功能必須返回一個HttpResponse那么我需要顯示首頁,就是域名直接映射到某個 view 函數(shù)下,那么又怎么寫呢?[python] view plain copy print?(r'^$', index),index 函數(shù)就是生成首頁的 view 函數(shù)。順便說下,在 view 函數(shù)里,return HttpResponseRedirect('../'):返回主頁,即127.0.0.1。