Django在部署web服务时,通常会使用Nginx来访问静态资源目录/static,这时我们可以通过命令收集共用的静态资源文件和APP目录中的/static。
执行命令:python manage.py collectstatic
如果报错:django.core.exceptions.ImproperlyConfigured: You're using the staticfiles app without having set the STATIC_ROOT setting to a filesystem path.
命令执行成功后,会在项目的根路径下生成/static目录。