收货地址功能页

收货地址功能页用于展示用户的收货地址列表,用户可以选择其中的收货地址。自基础库版本 2.4.0 开始支持。

调用参数

用户信息功能页使用 functional-page-navigator 进行跳转时,对应的参数 name 应为固定值 chooseAddress ,返回参数与 wx.chooseAddress 相同。

bindsuccess 返回参数说明:

属性类型说明最低版本
userNamestring收货人姓名
postalCodestring邮编
provinceNamestring国标收货地址第一级地址
cityNamestring国标收货地址第一级地址
countyNamestring国标收货地址第一级地址
detailInfostring详细收货地址信息
nationalCodestring收货地址国家码
telNumberstring收货人手机号码
errMsgstring错误信息

代码示例:

  1. <!--plugin/components/hello-component.wxml-->
  2. <functional-page-navigator
  3. name="chooseAddress"
  4. version="develop"
  5. bind:success="onSuccess"
  6. bind:fail="onFail"
  7. >
  8. <button>选择收货地址</button>
  9. </functional-page-navigator>
  1. // plugin/components/hello-component.js
  2. Component({
  3. methods: {
  4. onSuccess: function (res) {
  5. console.log(res.detail);
  6. },
  7. onFail: function (res) {
  8. console.log(res);
  9. }
  10. }
  11. });