利用JavaScript獲取用戶IP屬地方法詳解

寫在前面

想要像一些平臺那樣顯示用戶的位置信息,例如某省市那樣。那麼這是如何做到的, 據說這個位置信息的準確性在通信網絡運營商那裡?先不管,先實踐嘗試下能不能獲取。

嘗試一:navigator.geolocation

嘗試瞭使用 navigator.geolocation,但未能成功拿到信息。

getGeolocation(){
  if ('geolocation' in navigator) {
    /* 地理位置服務可用 */
    console.log('地理位置服務可用')
    navigator.geolocation.getCurrentPosition(function (position) {
      console.dir('回調成功')
      console.dir(position) // 沒有輸出
      console.dir(position.coords.latitude, position.coords.longitude)
    }, function (error) {
      console.error(error)
    })
  } else {
    /* 地理位置服務不可用 */
    console.error('地理位置服務可用')
  }
}

嘗試二:sohu 的接口

嘗試使用http://pv.sohu.com/cityjson?ie=utf-8獲取用戶位置信息, 成功獲取到信息,信息樣本如下:

{"cip": "14.11.11.11", "cid": "440000", "cname": "廣東省"}
// 需要做跨域處理
getIpAndAddressSohu(){
  // config 是配置對象,可按需設置,例如 responseType,headers 中設置 token 等
  const config = {
    headers: {
      Accept: 'application/json',
      'Content-Type': 'application/json;charset=UTF-8',
    },
  }
  axios.get('/apiSohu/cityjson?ie=utf-8', config).then(res => {
    console.log(res.data) // var returnCitySN = {"cip": "14.23.44.50", "cid": "440000", "cname": "廣東省"};
    const info = res.data.substring(19, res.data.length - 1)
    console.log(info) // {"cip": "14.23.44.50", "cid": "440000", "cname": "廣東省"}
    this.ip = JSON.parse(info).cip
    this.address = JSON.parse(info).cname
  })
}

調試的時候,做瞭跨域處理。

proxy: {
  '/apiSohu': {
    target: 'http://pv.sohu.com/', // localhost=>target
    changeOrigin: true,
    pathRewrite: {
    '/apiSohu': '/'
    }
  },
}

下面是一張獲取到位置信息的效果圖:

嘗試三:百度地圖的接口

需要先引入百度地圖依賴,有一個參數 ak 需要註意,這需要像管理方申請。例如下方這樣

<script src="https://api.map.baidu.com/api?v=2.0&ak=3ufnnh6aD5CST"></script>
getLocation() { /*獲取當前位置(瀏覽器定位)*/
  const $this = this;
  var geolocation = new BMap.Geolocation();//返回用戶當前的位置
  geolocation.getCurrentPosition(function (r) {
    if (this.getStatus() == BMAP_STATUS_SUCCESS) {
      $this.city = r.address.city;
      console.log(r.address) // {city: '廣州市', city_code: 0, district: '', province: '廣東省', street: '', …}
    }
  });
}
function getLocationBaiduIp(){/*獲取用戶當前位置(ip定位)*/
  function myFun(result){
    const cityName = result.name;
    console.log(result) // {center: O, level: 12, name: '廣州市', code: 257}
  }
  var myCity = new BMap.LocalCity();
  myCity.get(myFun);
}

成功用戶的省市位置,以及經緯度坐標,但會先彈窗征求用戶意見。

寫在後面

嘗試結果不太理想,sohu 的接口內部是咋實現的,這似乎沒有彈起像下面那樣的征詢用戶意見的提示。

而在 navigator.geolocation 和 BMap.Geolocation() 中是彈起瞭的。

用別人的接口總歸是沒多大意思,也不知道不用征求用戶意見是咋實現的。

經實測 sohu 的接口和 new BMap.Geolocation() 都可以拿到用戶的位置信息(省市、經緯度等)。

到此這篇關於利用JavaScript獲取用戶IP屬地方法詳解的文章就介紹到這瞭,更多相關JavaScript獲取用戶IP屬地內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: