# wx.miniapp.bindPhone

iOS >= 1.0.9,Android >= 1.0.5

在系统登录态生效期间,调用接口绑定手机号。

# 前置准备

使用 button 组件指定 open-typesms-type 触发接口向用户发送短信验证码。

# 参数

# Object object

属性 类型 默认值 必填 说明
phoneNumber string 手机号
verifyCode string 验证码: 6位纯数字组成的字符串
success function 接口调用成功的回调函数
fail function 接口调用失败的回调函数
complete function 接口调用结束的回调函数

# object.fail 回调函数

# 参数
# Object res
属性 类型 说明
errCode number 错误码。0:请求成功
errMsg string 错误提示

res.errCode

errCode 说明
-1 system error
10001011 系统登录态无效
10001006 验证码错误
10001023 手机号已存在, 绑定失败
-700000 前端错误,errMsg 将给出详细提示

# 示例代码

wx.miniapp.bindPhone({
	phoneNumber: 'xxx', // 手机号
	verifyCode: 'xxx', // 验证码
	success(res) {
		// 绑定成功	
	}
})