您好,登錄后才能下訂單哦!
這篇文章主要介紹通過Django使用本地css/js文件的示例,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
在manager.py同層級下創建static文件夾, 里面放上css , js, image等文件或者文件夾
我的文件夾tree:
? FileService git:(master) ? tree . ├── 2kill_port.sh ├── FileService │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── settings.cpython-37.pyc │ │ ├── urls.cpython-37.pyc │ │ └── wsgi.cpython-37.pyc │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── db.sqlite3 ├── en_bg.jpg ├── fileoperation │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── admin.cpython-37.pyc │ │ ├── models.cpython-37.pyc │ │ └── views.cpython-37.pyc │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── __init__.py │ │ └── __pycache__ │ │ └── __init__.cpython-37.pyc │ ├── models.py │ ├── templates │ │ ├── bg_homg.html │ │ └── home.html │ └── views.py ├── files │ ├── 11.log │ ├── 22.log │ ├── 44.log │ ├── th.jpeg │ ├── ?\217?\225快?\205?\ 2020-01-08\ ?\213?\215\2101.50.03.png │ └── ?\235?\231??\212??\224\200?\207??\201.pdf ├── kill_port.sh ├── manage.py └── static ├── images │ └── en_bg.jpg └── style └── style.css
然后只需在FileService/settings.py中進行設置就行, 在末尾添加以下代碼
STATIC_URL = '/static/' STATICFILES_DIRS=[ os.path.join(BASE_DIR,'static') ]
最后只需要在使用的html文件中通過以下方式導入:
<head> <link rel="stylesheet" type="text/css" href="../static/style/style.css" rel="external nofollow" /> <meta charset="UTF-8"> <title>文件傳輸</title> </head>
以上是“通過Django使用本地css/js文件的示例”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。