微信小程序获取用户收货地址,这个功能在我们开发商城的时候,经常会用到,所以微信小程序专门提供了API,我们只需要直接调用就可以了。
实现代码:

getAddress: function() {
        let that = this;
        wx.chooseAddress({
            success(res) {
                console.error(res)
                console.log(res.userName)//收货人姓名
                console.log(res.postalCode)//邮编
                console.log(res.provinceName)//国标收货地址第一级地址
                console.log(res.cityName)//国标收货地址第二级地址
                console.log(res.countyName)//国标收货地址第三级地址
                console.log(res.detailInfo)//详细收货地址信息
                console.log(res.nationalCode)//收货地址国家码
                console.log(res.telNumber)//收货人手机号码
            }
        })
    },

实现效果:
收货地址.png
你只要对你自己的内容进行赋值就可以了。

微信小程序获取用户收货地址.jpeg

Last modification:April 5, 2020
If you think my article is useful to you, please feel free to appreciate