gpt4 book ai didi

python - 无法在 Django 模板中加载 css

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

这是我简化的 html 代码:

{% load staticfiles %}
<html lang="en">
<head>
<link href="{% static '/css/buttonform.css' %}" rel="stylesheet">
</head>
</html>

这是我的settings.py:

INSTALLED_APPS = ['django.contrib.staticfiles',]
STATIC_URL = '/static/'

STATIC_ROOT = os.path.join(os.path.dirname(BASE_DIR), "static_in_env", "static_root")

STATICFILES_DIRS = (
os.path.join(BASE_DIR, "static_in_pro", "our_static"),
)

CSS 文件存在于 STATICFILES_DIRS 中,但出现错误:Not Found:/css/buttonform.css

最佳答案

改变

<link href="{% static '/css/buttonform.css' %}" rel="stylesheet">

<link href="{% static 'css/buttonform.css' %}" rel="stylesheet">

关于python - 无法在 Django 模板中加载 css,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38161032/

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