赞
踩
data(){ return:{ ipAddress: "", } }, mounted() { this.getIPAddress(); }, //获取ip getIPAddress() { const url = "http://api.ipify.org?format=json"; this.axios.get(url).then((response) => { this.ipAddress = response.data.ip; console.log(this.ipAddress); }); },
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。