学习是最好的投资!
1、官方文档有这么一句, 你看看你的Debug是不是True
During development, if you use django.contrib.staticfiles, this will be done automatically by runserver when DEBUG is set to True (see django.contrib.staticfiles.views.serve()).
2、static_root是给python manage.py collectstatic用的,这个目录是给app以外的共同Static目录使用的,不要与app自己目录下的static重名。我觉的你可以把这个配置去掉,或者指向另一个目录,比如project/static3、如果你指定了static_root,可以运行python manage.py collectstatic,然后看一看,在static_root下是否正确归集了你的app下的静态文件,针对性的查一查4、协助定位静态文件的还有这个命令可以协助你排查问题
static_root
python manage.py collectstatic
python manage.py findstatic /blog/css/style.css --verbosity 2
一个小小的spell error。
1、官方文档有这么一句, 你看看你的Debug是不是True
2、
static_root
是给python manage.py collectstatic
用的,这个目录是给app以外的共同Static目录使用的,不要与app自己目录下的static重名。我觉的你可以把这个配置去掉,或者指向另一个目录,比如project/static3、如果你指定了
static_root
,可以运行python manage.py collectstatic
,然后看一看,在static_root
下是否正确归集了你的app下的静态文件,针对性的查一查4、协助定位静态文件的还有这个命令可以协助你排查问题
一个小小的spell error。