好吧,我知道有很多關(guān)于這個(gè)的問題,我已經(jīng)梳理了所有這些問題,試圖找到答案,但沒有什么是我正在尋找的。我的問題是,每當(dāng)我嘗試將靜態(tài)文件加載到 Django 模板中時(shí),它就無法工作。這是我的文件結(jié)構(gòu):MainProjectDir|+-- DjangoProject| || +-- MainDjangoSub| | || | +-- __init__.py| | +-- settings.py (all the other usual folders below)| || +-- StaticPages (this is my App directory)| | || | +-- templates (will contain all templates for StaticPages app)| | | || | | +-- StaticPages (directory containing html templates for the Static Pages App)| | | | || | | | +-- main.html| | | | +-- navbar.html| | || | +-- __init__.py| | +-- views.py (all other usual app files below)| || +-- static (contains all static files for the project)| | || | +-- Bootstrap (subdirectory containing the Bootstrap static files)| | | || | | +-- css (directory containing all css files from Bootstrap precompiled files)| | | +-- js (directory containing all js files from Bootstrap precompiled files)| +-- manage.py我的設(shè)置文件中與靜態(tài)文件有關(guān)的設(shè)置:INSTALLED_APPS = [ 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', 'StaticPages',]STATIC_URL = '/static/'STATICFILES_DIRS = [ os.path.join(BASE_DIR, 'static')]在 StaticPages 應(yīng)用程序下的 views.py 文件中,我有這個(gè)視圖來呈現(xiàn)我的模板:def home(request): return render(request, 'StaticPages/main.html')所以我們來談?wù)勎业膯栴}。在我用來加載靜態(tài)文件的 main.html 文件中{% load static %},然后在對(duì) css 或 js 文件的任何調(diào)用中,我做了類似的事情,但 pycharm 突出顯示文本并說“無法解析目錄......”這是我的 html 文件的示例:<!DOCTYPE html><html>{% load static %}<head> <meta charset="UTF-8"> <title>Title</title> <link rel="stylesheet" href='{% static "/Bootstrap/css/bootstrap.min.css" %}' integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous"> <style> .navbar-custom{ background-color: #e86813; } </style> <h3>Hello World</h3></head><body> {% include 'StaticPages/navbar.html' %}</body></html>
1 回答

qq_笑_17
TA貢獻(xiàn)1818條經(jīng)驗(yàn) 獲得超7個(gè)贊
原來pycharm搞砸了。我上傳了一個(gè)免費(fèi)的 Bootstrap 模板并使用了相同的方法: {% static load %}
在我的 html 文件中。
pycharm 再次突出顯示了所有有href="{%static ...directory... %}"
錯(cuò)誤的 html,但是當(dāng)我啟動(dòng)服務(wù)器時(shí),模板及其所有 css 都顯示為正常,所以 pycharm 在這種情況下表現(xiàn)得很奇怪。
添加回答
舉報(bào)
0/150
提交
取消