1

我在应用我的 CSS 时遇到了一些问题。(我正在使用 Django 1.5)

这是我的项目结构:

project
   - app
   - project
   - static
       - css
           - style.css
   - template
       - index.html

我的设置是默认的,除了添加我的数据库设置。

这是我的 index.html 对 css 的引用:

{% load staticfiles %}
<!DOCTYPE html>
<html>
<head>
    <title>app</title>
    <link rel="stylesheet" type="text/css" href="{% static 'css/style.css' %}"  />
</head>
<body>
</body>
</html>

我的错误是 style.css 位置的 404:

[24/May/2013 17:24:57] "GET /static/css/style.css HTTP/1.1" 404 1676

感谢有人可以让我知道我错过了哪一部分。谢谢!

4

1 回答 1

0

如果您的设置是默认设置,我认为它无法正常工作。你必须告诉 Django 在哪里提供静态文件。您在设置文件中执行此操作。

这应该有帮助:https ://docs.djangoproject.com/en/dev/howto/static-files/

于 2013-05-24T09:42:06.107 回答