MVC 的时区详细信息
你好 我正在尝试找出一种方法来获取客户端时区详细信息并将其存储在数据库中,该数据库稍后将用于计算 UTC 日期。所以我需要的是
1)一种获取客户端时区信息的方法,而不需要用户从列表中选择(所以可能需要javascript) 2) 我需要存储哪些时区详细信息,稍后我可以使用这些详细信息来计算该用户的 UTC 日期
请注意,该项目基于 MVC 框架
Hi
I am trying to fig out a way to get the clients timezone details and store it in the database which will be used to calculate UTC dates later on. So what I need is
1) a way to get the clients timezone infor WITHOUT the user selecting from a list (so might need a javascript)
2) What are the timezone details I would need to store which I can then later on use to calculate UTC dates for that user
Please note the project is based on MVC framework
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以尝试 使用以下命令检测时区javascript,这是一个更强大的版本。然后将其包含在隐藏字段或查询字符串变量中,以便服务器可以获取它。
You may try to detect the timezone using javascript and here's a more robust version. Then include it in a hidden field or query string variable so that the server can fetch it.
您可以在 JavaScript 中使用 getTimezoneOffset() 方法。
它返回格林威治标准时间 (GMT) 与当地时间之间的时差(以分钟为单位)。
You can use getTimezoneOffset() method in javascript.
It returns the time difference between Greenwich Mean Time (GMT) and local time, in minutes.