- [BUG] Pick组件内mode="region"中,存在错误的邮政编码。
在下面方法中,使用e.detail.postcode来获取邮政编码: 其中天津市,天津市,河西区输入邮政编码572000,但是正确的邮政编码应该是300202。 国家官方邮政编码查询来源:http://xzqh.mca.gov.cn/defaultQuery?shengji=%CC%EC%BD%F2%CA%D0%A3%A8%BD%F2%A3%A9&diji=%CC%EC%BD%F2%CA%D0&xianji=%BA%D3%CE%F7%C7%F8 bindRegionChange: function (e) { console.log('picker发送选择改变,携带值为', e.detail, '邮政编码', e.detail.postcode) this.setData({ region: e.detail.value, code: e.detail.code, postcode: e.detail.postcode }) } 小程序内显示: [图片] 国家民政部数据: [图片] 复现代码片段: https://developers.weixin.qq.com/s/oE2iWtm27GHg
2023-06-26 - 【开放平台】下的【第三方平台】,【使用授权码获取授权信息】接口返回的”confirm_info“?
【开放平台】下的【第三方平台】,【使用授权码获取授权信息】接口,返回的”func_info“中的”confirm_info“代表什么?接口文档里没有写,下边是数据: { "authorization_info":{ "authorizer_appid":"wxd71d9100efceafd9", "authorizer_access_token":"xxxxxx", "expires_in":7200, "authorizer_refresh_token":"xxxxxxx", "func_info":[ { "funcscope_category":{ "id":1 } }, { "funcscope_category":{ "id":15 } }, { "funcscope_category":{ "id":4 } }, { "funcscope_category":{ "id":7 } }, { "funcscope_category":{ "id":2 } }, { "funcscope_category":{ "id":3 } }, { "funcscope_category":{ "id":11 } }, { "funcscope_category":{ "id":8 } }, { "funcscope_category":{ "id":33 }, "confirm_info":{ "need_confirm":0, "already_confirm":0, "can_confirm":0 } }, { "funcscope_category":{ "id":35 } } ] } }
2021-05-31