查询用户公网ip的接口

 getIPAddress() {
    const url = 'http://api.ipify.org?format=json';
    axios.get(url).then(response => {
      this.ipAddress = response.data.ip;
    });
  },

你可能感兴趣的:(前端,服务器,javascript)