"api工厂" 使用手册

api接口开箱即用,云后台管理,助力前端,解放后端开发;

不懂编程也能独立开发应用,小步快跑,快速创业!

旨为更懂你!

一键获取手机号码

选用能力

添加了这个能力以后,必须要通过后面的用户信息申请以后才能使用

小程序代码

https://opendocs.alipay.com/mini/api/getphonenumber

<button onGetAuthorize="onGetAuthorize" onError="onAuthError" scope='phoneNumber' openType="getAuthorize">一键登陆</button>

open-type 和 scope 是不能少的

async getPhoneNumberAlipay() {
    console.log(1111);
    my.getPhoneNumber({
        success: (res) => {
        this._getPhoneNumberAlipay(res.response)
        },
        fail: (res) => {
        console.log(res);
        console.log('getPhoneNumber_fail');
        },
    })
},
async _getPhoneNumberAlipay(encryptedData) {
    console.log(2222);
    const res = await this.$wxapi.aliappBindMobile({
        token: this.token,
        encryptedData: encryptedData
    })
    if (res.code == 0) {
        wx.showToast({
            title: '绑定成功',
            icon: 'success',
            duration: 2000
        })
        this.$u.vuex('mobile', res.data)
    } else {
        wx.showModal({
            title: '提示',
            content: res.msg,
            showCancel: false
        })
    }
},
onAuthError() {
    console.log(33333);
    console.log('onAuthErroronAuthErroronAuthErroronAuthErroronAuthError');
},

Copyright © 杭州于芯科技有限公司

浙ICP备15041833号