当前位置: 首页 > 工具软件 > staticfiles > 使用案例 >

?: (staticfiles.E002) The STATICFILES_DIRS setting should not contain the STATIC_ROOT setting.

唐兴思
2023-12-01

  File "C:\Users\python\lib\threading.py", line 916, in _bootstrap_inner
    self.run()
  File "C:\Users\python\lib\threading.py", line 864, in run
    self._target(*self._args, **self._kwargs)
  File "C:\Users\admin\Desktop\untitled66\lib\site-packages\django\utils\autoreload.py", line 64, in wrapper
    fn(*args, **kwargs)
  File "C:\Users\admin\Desktop\untitled66\lib\site-packages\django\core\management\commands\runserver.py", line 118, in inner_run
    self.check(display_num_errors=True)
  File "C:\Users\admin\Desktop\untitled66\lib\site-packages\django\core\management\base.py", line 469, in check
    raise SystemCheckError(msg)
django.core.management.base.SystemCheckError: SystemCheckError: System check identified some issues:

ERRORS:
?: (staticfiles.E002) The STATICFILES_DIRS setting should not contain the STATIC_ROOT setting.
 

解决方法:

STATIC_ROOT  = os.path.join(BASE_DIR, 'static')【错误】
STATIC_ROOT  = os.path.join(BASE_DIR, '/static/')【正确】

 

 

 类似资料:

相关阅读

相关文章

相关问答