pycharm开发django项目 static报404解决方法

settings文件中确保有以下配置

# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/1.10/howto/static-files/
STATIC_URL = '/static/'
STATICFILES_DIRS = (
os.path.join(BASE_DIR, 'static'),
) 另外
DEBUG = True
上一篇:Arch: Configurations


下一篇:Vue基础系列(二)——Vue中的methods属性