父目录符号在 html 中不起作用

Parent directory symbol not working in html

<meta charset="utf-8">
   <title>Exam Page</title>
    <link rel="stylesheet" href="../../../static/css/teststyle.css">
 </head>

我在 exam 文件夹中使用此代码,我想转到父目录,所以我使用了 ../../ 但它显示以下错误

未找到:/exam/static/css/teststyle.css

在您的模板顶部添加 {% load static %} 并添加您的 css 您可以使用 {% static 'css/teststyle.css' %}.

{% load static %}

    <meta charset="utf-8">
    <title>Exam Page</title>
    <link rel="stylesheet" href="{% static 'css/teststyle.css' %}">
</head>

在你的主 urls.py 添加

from django.conf import settings
from django.conf.urls.static import static

urlpatterns += static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)

并在您的 settings.py 中添加

STATIC_URL = '/static/'
STATIC_ROOT = os.path.join(BASE_DIR, 'static')