django之建立第7個專案 url配置

2022-03-12 21:17:35 字數 1867 閱讀 9220

1、配置urls.py

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('',#

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)),

#url(r'^$', 'blog.views.index'),

url(r'

^blog/index/$

', '

blog.views.index'),

url(r

'^blog/time/$', 'blog.views.time'

),

)

2、配置views.py

#匯入templates檔案所需導入庫

#載入器,載入模板

t=loader.get_template("

index.html")

#django之建立第4-1個專案-dict形式

user =

c = context() #

在這裡test位變數,user為變數的值

3、建立time.html檔案並寫入下面的內容

doctype html

>

<

html

lang

="en"

>

<

head

>

<

meta

charset

="utf-8"

>

<

title

>time

title

>

head

>

<

body

>

<

lili

>

body

>

html

>

建立第1個Django專案

參考 環境準備 一台centos7,裝有python3 帶有pip3工具 首先使用pip安裝django pip3 install django 2.2安裝 django 之後,此時應該有可用的管理工具 django admin,使用它來建立專案 常用子命令 startproject 建立乙個專案 ...

django之建立第5個專案 條件語句

1 index doctype html html lang en head meta charset utf 8 title django之建立第5個專案 條件語句 title head br h2 name h2 h2 age h2 h2 訪問類方法 h2 h1 條件語句 h1 h1 1 條件語...

django之建立第5個專案 條件語句

1 index doctype html html lang en head meta charset utf 8 title django之建立第5個專案 條件語句 title head br h2 name h2 h2 age h2 h2 訪問類方法 h2 h1 條件語句 h1 h1 1 條件語...