您好,登錄后才能下訂單哦!
這篇文章主要介紹了如何利用JavaScript獲取用戶IP屬地的相關(guān)知識,內(nèi)容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇如何利用JavaScript獲取用戶IP屬地文章都會有所收獲,下面我們一起來看看吧。
嘗試了使用 navigator.geolocation,但未能成功拿到信息。
getGeolocation(){ if ('geolocation' in navigator) { /* 地理位置服務可用 */ console.log('地理位置服務可用') navigator.geolocation.getCurrentPosition(function (position) { console.dir('回調(diào)成功') console.dir(position) // 沒有輸出 console.dir(position.coords.latitude, position.coords.longitude) }, function (error) { console.error(error) }) } else { /* 地理位置服務不可用 */ console.error('地理位置服務可用') } }
嘗試使用http://pv.sohu.com/cityjson?ie=utf-8獲取用戶位置信息, 成功獲取到信息,信息樣本如下:
{"cip": "14.11.11.11", "cid": "440000", "cname": "廣東省"}
// 需要做跨域處理 getIpAndAddressSohu(){ // config 是配置對象,可按需設(shè)置,例如 responseType,headers 中設(shè)置 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 }) }
調(diào)試的時候,做了跨域處理。
proxy: { '/apiSohu': { target: 'http://pv.sohu.com/', // localhost=>target changeOrigin: true, pathRewrite: { '/apiSohu': '/' } }, }
下面是一張獲取到位置信息的效果圖:
需要先引入百度地圖依賴,有一個參數(shù) ak 需要注意,這需要像管理方申請。例如下方這樣
<script src="https://api.map.baidu.com/api?v=2.0&ak=3ufnnh7aD5CST"></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); }
成功用戶的省市位置,以及經(jīng)緯度坐標,但會先彈窗征求用戶意見。
嘗試結(jié)果不太理想,sohu 的接口內(nèi)部是咋實現(xiàn)的,這似乎沒有彈起像下面那樣的征詢用戶意見的提示。
而在 navigator.geolocation 和 BMap.Geolocation() 中是彈起了的。
用別人的接口總歸是沒多大意思,也不知道不用征求用戶意見是咋實現(xiàn)的。
經(jīng)實測 sohu 的接口和 new BMap.Geolocation() 都可以拿到用戶的位置信息(省市、經(jīng)緯度等)。
關(guān)于“如何利用JavaScript獲取用戶IP屬地”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對“如何利用JavaScript獲取用戶IP屬地”知識都有一定的了解,大家如果還想學習更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。