小程序获取当前的ip

// 微信获取ip

that = this;
wx.request({
    url: 'http://ip-api.com/json',
    success:function(e){
        that.setData({
            motto:e.data
        })
    }
});        

 

转载于:https://www.cnblogs.com/zehao/p/webchat_get_my_ip.html

你可能感兴趣的:(小程序获取当前的ip)