访问我的 css 脚本时遇到一些问题。设置:
STATIC_URL = '/static/'
# Additional locations of static files
STATICFILES_DIRS = (
'/C:/NetMagProjekt/netmag/netmag/static',
# Put strings here, like "/home/html/static" or "C:/www/django/static".
# Always use forward slashes, even on Windows.
# Don't forget to use absolute paths, not relative paths.
)
模板库
<link rel="stylesheet" type="text/css" href="{{STATIC_URL}}style.css"/>
如果我在浏览器中查看源代码,它看起来像这样:
<link rel="stylesheet" type="text/css" href="{{STATIC_URL}}style.css"/>
我找不到css样式。
有任何想法吗?