gpt4 book ai didi

python - 我的 CSS 和图像没有显示 Django

转载 作者:太空宇宙 更新时间:2023-11-03 21:41:51 24 4
gpt4 key购买 nike

我正在学习 Django,但由于某些原因我的 CSS 和图像没有显示。我觉得好像我在 HTML 文件中做错了什么。我认为我的文件被正确收集了,因为当我在浏览器中插入 http://127.0.0.1:8000/static/images/python-logo@2x.png 时,我看到了图像。

这是我的元素树:

mysite
\articles
\static
\articles
\css
\static
\images
\css
default.css
\js
\assets
\admin
\images
python-logo@2x.png
\css
default.css
\templates
base.html
\settings.py

在我的settings.py

STATICFILES_FINDERS = (
'django.contrib.staticfiles.finders.FileSystemFinder',
'django.contrib.staticfiles.finders.AppDirectoriesFinder',
)

STATIC_ROOT = os.path.join(BASE_DIR, 'assets')

STATICFILES_DIRS = (
os.path.join(BASE_DIR, 'static'),
)

STATIC_URL = '/static/'

这是我的 base.html

{% load staticfiles %}

<!DOCTYPE html>
<html lang="en">
<head>
<title>{% block title %} My Base Template {% endblock %}</title>

<link rel="stylesheet" type="text/css" href="{% static "css/default.css" %}">

</head>

<body>
<div id="page">
<div id="sidebar">
{% block sidebar %}
<ul>
<li><a href="/articles/all">Articles</a></li>
<li><a href="/admin/">Admin</a></li>
</ul>
{% endblock %}
</div>
<div id="content">
{% block content %}This is the content area{% endblock %}
<img src="{% static "images/python-logo@2x.png" %}">
</div>
</div>

</body>
</html>

最佳答案

尖括号 结束语法。现在它已经关闭,头部部分有问号

关于python - 我的 CSS 和图像没有显示 Django,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22978839/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com