美文网首页
Django中存储的时间不对,你知道为什么吗?

Django中存储的时间不对,你知道为什么吗?

作者: 心石卒了丶无痕 | 来源:发表于2019-12-12 16:04 被阅读0次

    Internationalization

    https://docs.djangoproject.com/en/1.11/topics/i18n/

    设置时区

    LANGUAGE_CODE = 'zh-hans' # 中文支持,django1.8以后支持;1.8以前是zh-cn
    TIME_ZONE = 'Asia/Shanghai'
    USE_I18N = True
    USE_L10N = True
    USE_TZ = False # 默认是Ture,时间是utc时间,由于我们要用本地时间,所以手动修改为false!!!!

    相关文章

      网友评论

          本文标题:Django中存储的时间不对,你知道为什么吗?

          本文链接:https://www.haomeiwen.com/subject/zemfuqtx.html