Django載入靜態檔案失敗,已解決

2022-05-06 02:30:08 字數 376 閱讀 7826

1.css檔案以及js檔案要放在static目錄下,static和templates屬於同級目錄

2.在django專案的同名專案檔案的setting.py中,最後新增靜態資料夾static目錄路徑

staticfiles_dirs = (

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

)

3.在templates下的html檔案中,如果要引用static下的靜態檔案,則新增一下**

6.瀏覽器可以選擇去除disabled cache上的勾

Django載入靜態檔案

1 安裝python和pip,這裡就不再贅述 2 通過pip 安裝命令安裝django,命令為 pip install django 3 進入命令列,進入你打算建立專案的位置,我專案安裝位置是 d python django 執行命令 django admin startproject hellow...

Django 載入靜態檔案

在乙個網頁中,不僅僅只有乙個html骨架,還需要css樣式檔案,js執行檔案以及一些等。因此在dtl中載入靜態檔案是乙個必須要解決的問題。在dtl中,使用static標籤來載入靜態檔案。要使用static標籤,首先需要。載入靜態檔案的步驟如下 確保在settings.py中設定了static url...

Django 模板載入靜態檔案

2 確保在 settings.py中設定了static url。staticfiles dirs os.path.join base dir,static 5 在模版中使用 load 標籤載入 static 標籤。比如要載入在專案的 static 資料夾下的 style.css 的檔案。那麼示例 如...