Django 新增靜態檔案的兩種實現方法 必看篇

2022-10-04 21:03:20 字數 478 閱讀 4408

django新增靜態檔案有兩種方法:

首先setting.py配置檔案中新增靜態檔案的路徑:

staticfiles_dirs = [ os.path.join(base_dir, "statics"),]  statices為你所建立的存放靜態檔案的資料夾名

然後進行引用。

1、html 檔案中通過 /static/資源名的方式,就可以訪問到資源

2、①html 檔案頭部填寫  ,②路徑填寫    #static 等於配置檔案中的 static_url = '/static/',可以按照需要進行修改,意義不大就是了。

以上這篇django 新增靜態檔案的兩種實現方法(必程式設計客棧看篇)就是小編分享給大家的全部內容了,希望能給大家乙個參www.cppcns.com考,也希望大家多多支援我們。

本文標題: django 新增靜態檔案的兩種實現方法(必看篇)

本文位址: /jiaoben/python/196539.html

django新增靜態檔案

1.settings.py 將以下 放到最下面 static url static staticfiles dirs os.path.join base dir staticfiles finders django.contrib.staticfiles.finders.filesystemfind...

Django測試的兩種方式

if name main 在測試中發現如下錯誤 the url doesn t end the slash url while maintaining post data.change your form to point to localhost 8000 dev note the trailin...

Django 啟動Python的兩種方式

啟動python有兩種方式 python manage.py shell和python。這兩個命令都會啟動互動直譯器,但是manage.py shell命令有乙個重要的不同 在啟動直譯器之前,它告訴django使用哪個設定檔案。django框架的大部分子系統,包括模板系統,都依賴於配置檔案 如果dj...