微信登录.js文件// 微信授权获取手机号弹窗 getPhoneNumber: function (e) { var that = this; if (e.detail.errMsg == "getPhoneNumber:ok") { this.getLocation() wx.re_微信小程序刚进入的时候弹出绑定用户的手">
当前位置:   article > 正文

微信小程序——微信授权获取手机号弹窗(官方自带)_微信小程序刚进入的时候弹出绑定用户的手机号功能怎么开发

微信小程序刚进入的时候弹出绑定用户的手机号功能怎么开发

.wxml文件

<button open-type="getPhoneNumber" bindgetphonenumber="getPhoneNumber">微信登录</button>
  • 1

.js文件

// 微信授权获取手机号弹窗
	getPhoneNumber: function (e) {
		var that = this;
		if (e.detail.errMsg == "getPhoneNumber:ok") {
			this.getLocation()
			wx.request({
				url: 'http://localhost/index/users/decodePhone',
				data: {
					encryptedData: e.detail.encryptedData,
					iv: e.detail.iv,
					sessionKey: that.data.session_key,
					uid: "",
				},
				method: "post",
				success: function (res) {
					console.log('res...', res);
					
				}
			})
		}
	}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/792045
推荐阅读
相关标签
  

闽ICP备14008679号