微信小程序 中wx.chooseAddress(OBJECT)实例详解

蔚蓝色的天,深蓝色的海,金黄色的沙,灰白色的鸥,穿着米白格子衬衫的你,站在金灿灿的阳光下,很耀眼。

1、wx.chooseAddress(OBJECT)

概述

调起用户编辑收货地址原生界面,并在编辑完成后返回用户选择的地址。

OBJECT参数说明

代码实现

if(wx.chooseAddress){
 wx.chooseAddress({
  success: function (res) {
   console.log(JSON.stringify(res))
  },
  fail: function(err){
   console.log(JSON.stringify(err))
  }
 })
}else{
 console.log('当前微信版本不支持chooseAddress');
}

wx.chooseAddress用户编辑收货地址原生界面展示

每次进入都会有免责声明

新增地址界面1

第一次没有地址会直接进入新增地址界面

新增地址界面2

当有保存的地址时,展示我的地址界面。当点击完成时,"errMsg":"chooseAddress:ok"。当点击返回时,"errMsg":"chooseAddress:cancel"。

我的地址界面

返回结果返回参数说明

success返回参数说明

success返回结果

{
 "errMsg":"chooseAddress:ok",
 "userName":"张三",
 "telNumber": "12345678901",
 "nationalCode":"510630",
 "postalCode":"510000",
 "provinceName":"广东省",
 "cityName":"广州市",
 "countyName":"天河区",
 "detailInfo":"某巷某号"
}

fail返回结果

{"errMsg":"chooseAddress:cancel"}

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

以上就是微信小程序 中wx.chooseAddress(OBJECT)实例详解。你一天的爱心可能带来别人一生的感谢。更多关于微信小程序 中wx.chooseAddress(OBJECT)实例详解请关注haodaima.com其它相关文章!

标签: 小程序 wx