-
Notifications
You must be signed in to change notification settings - Fork 182
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
时区识别问题 #116
Comments
Alas 对底层的设计更加的优秀,包括说时区、多服务器、多语言、多客户端。 |
我尝试了使用 dateutil 来进行时区转换,可以做到将时间转换成国内时间从而满足代码的时间段判定。但是有个问题在于,如果时间段不符合,比如逢魔之时,会强制将代码的下次运行时间改到17:30之后,但是这个时间就是没有经过转换的。所以我在想,是否可以通过引入一个获取时间的函数,将所有的时间都通过这个函数来进行转换 |
你的理解是正确的,不过我们先看看先驱是怎么设计的,Alas中有
感觉有点绕 |
想法应该是把本地时间映射到北京时间,以及北京时间 -> 本地时间。 |
给你参考一下,自己来提一个pr,毕竟只有你一个是倒时差的 |
+1,现在有两个倒时差的了 |
我也遇到这个时区问题了,这个方案用timedelta可能没法考虑到夏令时带来的变化,可以引入新的库pytz来做时区计算。不过我认为最好还是始终使用utc时间,然后在生成输出的时候再考虑时间转换。
|
当前不足
由于时区不同的缘故,很多功能无法使用,比如逢魔之时
解决方案
对时间的判断函数里增加一个时区判断,然后转换成统一时间后进行判断
其他内容
No response
The text was updated successfully, but these errors were encountered: