如何在Node.js中查找所有用户的Geoip位置

我有一个要求,我必须在其中找到用户的地理位置。我使用了将用户的地址存储在数据库中然后显示该用户的地理位置的代码,现在假设用户将其位置更改为其他位置。如果用户现在从该地区或国家登录,如何我应该显示该用户的Geoip。我使用的代码是:

geo.geocoder(geo.google, address, sensor,function(formattedAddress, latitude, longitude) {

console.log("Formatted Address: " + formattedAddress);

console.log("Latitude: " + latitude);

console.log("Longitude: " + longitude);

user.latitude = latitude;

user.longitude = longitude;

user.save(function(err) {

if(err)

return userUpdateFailed();

req.flash('info', 'Succesfully Upadated Changes');

res.redirect('/userinfo');

});

});

有没有其他选择,我可以找到用户的确切位置。请帮助

回答:

Node-GeoIP可能是一种解决方案,但请记住,基于ip的地理定位并不总是真实的。

以上是 如何在Node.js中查找所有用户的Geoip位置 的全部内容, 来源链接: utcz.com/qa/406401.html

回到顶部