vue中獲取客戶端IP地址(不需要額外引入三方文件)


之前看了幾種方法 ,都是引入騰訊,新浪,搜狐等的三方js文件來查詢IP地址,但是我自己測試的時候IP地址不准確,所以就找了找,發現了這個方法,准確的獲取到了IP地址和cmd的ipconfig獲取到的IP一致,所以在這里保存和分享一下,以后在遇到這個需要不再懵逼

 

1.內網IP

注意:有的瀏覽器獲取到的是IPv4地址,有的是IPv6地址 

<template>
  <section class="p-10">
    <h1>{{ ip }}</h1>
  </section>
</template>
<script> export default { data() { return { ip: '' }; }, methods: { getUserIP(onNewIP) { let MyPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection; let pc = new MyPeerConnection({ iceServers: [] }); let noop = () => { }; let localIPs = {}; let ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g; let iterateIP = (ip) => { if (!localIPs[ip]) onNewIP(ip); localIPs[ip] = true; }; pc.createDataChannel(''); pc.createOffer().then((sdp) => { sdp.sdp.split('\n').forEach(function (line) { if (line.indexOf('candidate') < 0) return; line.match(ipRegex).forEach(iterateIP); }); pc.setLocalDescription(sdp, noop, noop); }).catch((reason) => { }); pc.onicecandidate = (ice) => { if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return; ice.candidate.candidate.match(ipRegex).forEach(iterateIP); }; } }, mounted() { this.getUserIP((ip) => { this.ip = ip; }); } } </script>

<style lang="scss">
</style>

 

 

 

 

2.外網ip

  <script src="http://pv.sohu.com/cityjson?ie=utf-8"></script>
  <script type="text/javascript"> console.log(returnCitySN["cip"]); </script>

 

 

 

嗯,就醬~~

 

參考https://blog.csdn.net/yuang12345/article/details/79678677


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM