尝试到链接css在html文件为一个django项目

lx0bsm1f  于 2023-03-09  发布在  Go
关注(0)|答案(1)|浏览(111)

Directories
附件是我的目录的照片。我正在尝试使用sudokuStyle.css在sudoku_board.html。但是,它似乎没有使连接在我的html文件。我包括我的头为HTML。

{% load static %}

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Sudoku Solver</title>

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

</head>

我哪里做错了?
我试过各种连接方式,但都不起作用。
编辑:
这是我的urls.py

from django.urls import path
    from . import views
    
    
    from django.conf import settings
    from django.conf.urls.static import static
    
    urlpatterns = [
        path('', views.sudoku_board, name='sudoku_board'),
    ]
    
    urlpatterns += static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)

这是在我的setting.py:

STATIC_URL = '/static/css/'
xdyibdwo

xdyibdwo1#

下次请发布所有必要的代码,以便更容易理解这个问题。在我看来,在设置中您可能没有向urlpatterns添加静态

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

同时检查文件名及其路径是否正确。

相关问题