有没有一种简单的方法可以确定用户在哪个半球?

编程入门 行业动态 更新时间:2024-10-05 05:17:59
本文介绍了有没有一种简单的方法可以确定用户在哪个半球?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我正在开展一个包含季节性内容的项目,我们正在考虑确定用户的位置,以确定适合他们的季节.这样做的明显方法是对他们的 IP 进行地理定位,然后获取纬度.> 0 是北半球,<0 是南方.

I'm working on a project which includes seasonal content, and we're thinking of determining the user's location to work out what season it is for them. The obvious way of doing this is to Geo-locate their IP, then grab the latitude. > 0 is Northern hemisphere, and < 0 is Southern.

我很高兴这样做 - 虽然将 IP 精确定位到确切位置似乎有点浪费,只是为了确定它们在地球的哪一半 - 但我想我会扔掉它以防万一有人有任何可能缩短流程的技巧.

I'm happy to go that way - though it seems a bit of a waste to pinpoint an IP to an exact location, just to determine which half of the planet they're on - but I thought I'd throw it out there in case anyone has any tricks which might shortcut the process.

请求标头,可以在客户端用 JS 提取的东西,很容易获得 - 我只是认为它没有任何帮助.

Request headers, stuff that can be extracted with JS on the client, it's all easy enough to get - I just don't think any of it helps.

推荐答案

我先看看客户的时钟——如果客户的日历中存在夏令时,你可以判断他是在赤道以北还是以南.

I'd first check the client's clock- if daylight savings exists in the client's calendar, you can tell if he is north or south of the equator.

如果没有dst信息,可以使用geolocation,

if there is no dst information, you can use geolocation,

或者询问用户是否在赤道以南...

or ask the user if he is south of the equator...

window.whatHemisphere= (function(){ var y= new Date().getFullYear(); if(y.getTimezoneOffset()==undefined) return null; var jan= -(new Date(y, 0, 1, 0, 0, 0, 0).getTimezoneOffset()), jul= -(new Date(y, 6, 1, 0, 0, 0, 0).getTimezoneOffset()), diff= jan-jul; if(diff> 0) return 'N'; if(diff< 0) return 'S' return null; })()

更多推荐

有没有一种简单的方法可以确定用户在哪个半球?

本文发布于:2023-11-29 02:07:01,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1644865.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:半球   简单   方法   用户

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!