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