Django1 9學習筆記

2021-07-08 17:18:24 字數 1126 閱讀 7690

django1.9的templates系統和1.7有些許不一樣,原來的templates系統要由使用者自己定義。

如:

template_path = os.path.join(base_dir, 'templates')

template_dirs = (

# put strings here, like "/home/html/django_templates"

or"c:/www/django/templates".

# always use forward slashes, even on windows.

# don't forget to

use absolute paths, not relative paths.

template_path,

)

現在1.9提供了預設引數來定義templates dir

templates = [,},

]

現在只需要將你所設定的tempates 路徑放入

'dirs': ,
設定static file

djnago1.9 設定static file與1.7保持一致,使用

static_path = os.path.join(base_dir,'static')

static_root=''

static_url = '/static/'

staticfiles_dirs = (

static_path,

)

#用於載入static檔案的標籤

href="

"rel="stylesheet">

bootstrap需要聯合jquery使用,那如何在django的project中使用jquery呢?其實和使用bootstrap的方法類似,這裡就不重複啦。

然後再我們需要繼承base.html的頁面中就可以使用:

就好啦!是不是吼簡單噶!

Django 1 9 靜態檔案配置

django 靜態檔案的配置涉及到settings 中的三個配置項static url staticfiles dirs及static root 1.開發伺服器中靜態檔案的配置及應用 1 static url 配置 預設情況下 settings 配置 static url static 2 stat...

Django 1 9 開發web專案

django.contrib.admin django.contrib.auth django.contrib.contenttypes django.contrib.sessions django.contrib.messages django.contrib.staticfiles rest f...

django1 9的static檔案配置

django的static配置查了不少文章,都是複製貼上的,都沒搞定,後來沒辦法,只能去官網查英文文件。雖然英文不行,但是能看懂基本的配置資訊。照著官方的配置,果然成功了。大致配置如下 修改setting.py,後面加入 static url static 上面那句是寫死的,讓django能呼叫靜態...