Django 中的时区

Vaibhav Vaibhav 2021年6月29日
Django 中的时区

在构建软件时,除了创建安全可靠的后端和直观的前端设计外,我们还必须关注日期和时间。日期和时间在大多数软件中可能不是必不可少的元素,但它们在增强用户体验方面仍然起着至关重要的作用。

在 Django 中,设置本地时区相对简单。默认情况下,Django 使用 UTCCoordinated Universal TimeUniversal Time Coordinated

settings.py 中,我们必须配置 TIME_ZONE 变量来设置本地时区。

TIME_ZONE = 'Asia/Kolkata'
TIME_ZONE = 'Asia/Beirut'
TIME_ZONE = 'Europe/London'
TIME_ZONE = 'Europe/Istanbul'

该值遵循以下格式 - Area/Location。你可以在此处找到所有有效值。

Vaibhav Vaibhav avatar Vaibhav Vaibhav avatar

Vaibhav is an artificial intelligence and cloud computing stan. He likes to build end-to-end full-stack web and mobile applications. Besides computer science and technology, he loves playing cricket and badminton, going on bike rides, and doodling.

LinkedIn GitHub