在 GAE 应用程序上更改服务器时间
Change server time on GAE app
有没有办法更改 Google App Engine python 应用程序的服务器时间?如果是这样,我该怎么做? (Google 没有给我提供有用的结果)
您不能在 GAE 中更改系统时区,并且 noted in the docs:
App Engine clock times are always expressed in coordinated universal time (UTC). This becomes relevant if you use the current date or time (datetime.datetime.now()
) as a value...
因此,为了安全起见,您应该自己遵守此约定,并在需要时转换为您的最终用户时区。
有没有办法更改 Google App Engine python 应用程序的服务器时间?如果是这样,我该怎么做? (Google 没有给我提供有用的结果)
您不能在 GAE 中更改系统时区,并且 noted in the docs:
App Engine clock times are always expressed in coordinated universal time (UTC). This becomes relevant if you use the current date or time (
datetime.datetime.now()
) as a value...
因此,为了安全起见,您应该自己遵守此约定,并在需要时转换为您的最终用户时区。