使用python,自动确定用户当前时区的最准确方法是什么

前端之家收集整理的这篇文章主要介绍了使用python,自动确定用户当前时区的最准确方法是什么前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我已经验证了dateutils.tz.tzlocal()在heroku上不起作用,即使它确实如此,它不会只是从计算机的操作系统中获取tz,而不是用户吗?

如果没有存储用户时区,有没有办法确定请求的来源? (我正在使用烧瓶)

Twitter确实有一个设置来调整你的时区,但我想知道他们如何确定默认值应该是什么以及当用户没有登录时它将如何工作.

解决方法

您可以使用 Javascript并在cookie中设置客户端的时区.您甚至可以使用AJAX请求,然后将偏移量发送到服务器并保存在客户端的会话中.
var offset = new Date().getTimezoneOffset();

Description

The time-zone offset is the difference,in minutes,between UTC and local time. Note that>this means that the offset is positive if the local timezone is behind UTC and negative if it is ahead. For example,if your time zone is UTC+10 (Australian Eastern Standard Time),-600 will be returned. Daylight savings time prevents this value from being a constant even for a given locale

Mozilla Javascript Reference: getTimezoneOffset

原文链接:https://www.f2er.com/python/186353.html

猜你在找的Python相关文章