0

好吧,我的

STATIC_URL = '/static/'

这就是我的项目文件夹中的内容。

.:
mange.py project projectApp

./projectApp:
__init__.py
models.py
views.py
urls.py
tests.py
static
templates

./projectApp/static:
css

./projectApp/static/css:
consola.ttf style.css

./projectApp/templates:
base.html    

我也无法导入 style.css。我试过

    <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/style.css" />

但它不起作用。

在我的 style.css 中,我试图通过这样做来导入字体

@font-face { font-family: consola; src: url('consola.ttf'); }

我的 STATIC_URL 是

STATIC_URL = '/static/'

我的 STATIC_ROOT 是

STATIC_ROOT = '/home/user/documents/project/projectApp/static'

但它不工作。关于如何做的任何想法?

4

1 回答 1

0

好的,找到了答案。要正确链接 CSS,我应该这样做

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

代替

<link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/style.css" />
于 2013-10-05T23:47:15.150 回答