赞
踩
staticfiles:这是一个静态资源管理的app,django.contrib.staticfiles。老的版本中,静态资源管理一直是一个问题,部分app发布的时候需要带上静态资源,在部署的时候必须将每个app存在的static(这个目录是自己创建的)静态资源复制到项目根目录下同一个static目录(即staticfiles在项目目录下生成的static,与每个app下的static不同)。引入staticfiles之后,执行命令:python manage.py collectstatic就可以方便的将所用到的app中的静态资源复制到同一目录。
使用python manage.py collectstatic时项目settings.py中必须有(把所有app目录中的static集中到,项目目录中的static中)
STATIC_ROOT = os.path.join(BASE_DIR, "static")否则会提示错误,如下:
raise ImproperlyConfigured("You're using the staticfiles app "
django.core.exceptions.ImproperlyConfigured: You're using the staticfiles app without having set the STATIC_ROOT setting to a filesystem path.
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。