百度官方文档需要使用button然后设置open-type属性才能获取用户的昵称与头像。 //页面 <button open-type="getUserInfo" bindgetuserinfo="getUserInfo"> 获取用户信息按钮 </button> //js Page({ getUserInfo(e) { console.log('用户名称', e.detail.userInfo.nickName); console.log('用户头像', e.detail.us...
<button open-type="getUserInfo" @getuserinfo="getUserInfo"></button> 因为微信已经通知getUserInfo()已经不能用了,正确的使用方法是,将getUserInfo()替换成 uni.getUserProfile()。 完整一步代码即可: uni.showModal({ title: '温馨提示', content: '亲,授权微信登录后才能正常使用小程序功能', success(res...
方式:使用 button 组件,并将 open-type 指定为 getUserInfo 类型,获取用户基本信息。(还有一种open-type为getPhoneNumber可以获取用户手机号码,但是此方法需要用户授权两次,因为此方法只能获取用户电话号码,你如果需要获取用户头像和名称需要调用getUserInfo,这就导致用户会有2次授权的操作个人觉得体验不是很好,因此解决办...
<button open-type="getUserInfo" bindgetuserinfo="GetUser"> 1. 在wxml这个页面写入button组件 重点是open-type="getUserInfo" 当你点击这个button的时候会弹出授权框 bindgetuserinfo 这个属性后面绑定的 GetUser 是用户选择是否授权之后会进入的一个回调函数 具体代码如下 GetUser: function(e) { //授权成功 i...
<buttonopen-type="getUserInfo"@getuserinfo="getUserInfo"></button> 但如今,却只能得到一个缺省的灰色头像,和nickname = “微信用户”,两个数据,其它的年龄以及地区等什么都没有,更别提授权弹出框了!!! 查看官网如下图才知道API更新了: 获取用户信息接口变了,改用wx.getUserProfile(Object object) https...
<button open-type="getUserInfo" class="user-mask" @getuserinfo="toLogin" withCredentials="true"></button> toLogin(fn){ console.log('111111111111 toLogin'); let self = this; uni.login({ provider: 'weixin', success: function (loginRes) { console.log('AAAAAAAAAAAA'); console.log('toLo...
uniapp获取用户信息 getuserinfo <button type="primary" open-type="getUserInfo" @getuserinfo="wxGetUserInfo">登录</button> wxGetUserInfo(){ uni.getUserInfo({ success: (res)=>{this.userInfo =res.userInfo; console.log(this.userInfo); },...
首先我们需要定一个button,然后需要定义button的open-type的值,然后值必须是getUserInfo,这样才可以,额…真(m)不(m)错(p),知道就行了! 写到最后 关于怎么获取小程序的基本信息和地理位置就先写到这里吧!也不早了,后续会继续更新uniapp的知识点,毕竟路漫漫其修远兮,任重而道远啊!共勉!
然后使用按钮的open-type获取用户的头像,想要获取完整用户信息可以使用getUserInfo。 <view class="">// 调用微信开放能力<button open-type="chooseAvatar" @chooseavatar="chooseAvatar"style="width:190rpx;height: 190rpx;border-radius: 50%;padding: 0;margin-top: 20px;"><image :src="image" class="...
小程序调整了用户头像昵称的获取规则,回收wx.getUserInfo接口与wx.getUserProfile接口,调用接口只能获得默认灰色头像和昵称, 通过使用「头像昵称填写能力」来获取用户头像昵称 . 相关说明如下: 头像选择 需要将 button 组件 open-type 的值设置为 chooseAvatar,当用户选择需要使用的头像之后,可以通过 bindchooseavatar 事...