Django setting配置
Posted 大王来巡山
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Django setting配置相关的知识,希望对你有一定的参考价值。
LANGUAGE_CODE = ‘zh-hans‘ TIME_ZONE = ‘Asia/Shanghai‘ USE_I18N = True USE_L10N = True USE_TZ = False # Static files (CSS, javascript, Images) # https://docs.djangoproject.com/en/1.11/howto/static-files/ STATIC_URL = ‘/static/‘ STATICFILES_DIRS=((os.path.join(BASE_DIR, ‘static‘)),)
以上是关于Django setting配置的主要内容,如果未能解决你的问题,请参考以下文章