这是我的代码下面,它是不工作
LANGUAGE_CODE = 'en-us' TIME_ZONE = 'Asia/Pakistan' USE_I18N = True USE_L10N = True USE_TZ = True
它给我这个错误
A server error occurred. Please contact the administrator.
ovfsdjhp1#
巴基斯坦的默认时区是按Karachi计算的,因此不使用TIME_ZONE = 'Asia/Pakistan':
Karachi
TIME_ZONE = 'Asia/Pakistan'
TIME_ZONE = "Asia/Karachi"
standard Timezone list列表
72qzrwbm2#
我想你不需要加上Country Name。而不是这样:
Country Name
试试看:
TIME_ZONE = 'Asia/Add here city name with first letter capital'
例如:在印度,我们需要添加城市名称。
TIME_ZONE = 'Asia/Kolkata' #Added a city name here for india
2条答案
按热度按时间ovfsdjhp1#
巴基斯坦的默认时区是按
Karachi
计算的,因此不使用TIME_ZONE = 'Asia/Pakistan'
:standard Timezone list列表
72qzrwbm2#
我想你不需要加上
Country Name
。而不是这样:
试试看:
例如:
在印度,我们需要添加城市名称。