三种小程序获取用户头像昵称的方式
三种⼩程序获取⽤户头像昵称的⽅式
index.wxml
<view class="container">
<view class="userinfo">
<block wx:if="{{canIUseOpenData}}" calss="userinfo-opendata">
女生就业率高的专业<view class="userinfo-avatar" bindtap="bindViewTap">
<open-data type="userAvatarUrl"></open-data>      <!-- 直接显⽰头像具体可参照官⽹组件open-data -->
</view>
<open-data type="userNickName"></open-data>    <!-- 直接显⽰昵称具体可参照官⽹组件open-data-->
</block>
立夏为什么要斗蛋
<block>
<button bindtap="getUserProfile"> 获取头像昵称 </button>
<button open-type="getUserInfo" bindgetuserinfo="getUserInfo"> 获取头像昵称1 </button>
</block>
<block>
<image bindtap="bindViewTap" class="userinfo-avatar" src="{{userInfo.avatarUrl}}" mode="cover"></image>
关于情人节的文案
<text class="userinfo-nickname">{{userInfo.nickName}}</text>吉林大学专业排名
读后感怎么写才能写得好
</block>
</view>
</view>
idex.js
Page({
data: {
userInfo: {},
hasUserInfo: false,
canIUse: wx.canIUse('UserInfo'),
canIUseGetUserProfile: false,
canIUseOpenData: wx.canIUse('pe.userAvatarUrl') && wx.canIUse('pe.userNickName') // 如需尝试获取⽤户信息可改为false
},
// 事件处理函数
bindViewTap() {
wx.navigateTo({
url: '../logs/logs'
})
},
onLoad() {
if (wx.getUserProfile) {
this.setData({
canIUseGetUserProfile: true
})
}
},
getUserProfile(e) {
/
/ 推荐使⽤wx.getUserProfile获取⽤户信息,开发者每次通过该接⼝获取⽤户个⼈信息均需⽤户确认,开发者妥善保管⽤户快速填写的头像昵称,避免重复弹窗
desc: '展⽰⽤户信息', // 声明获取⽤户个⼈信息后的⽤途,后续会展⽰在弹窗中,请谨慎填写
success: (res) => {
this.setData({
userInfo: res.userInfo,
hasUserInfo: true
})
}
})
中国神话
},
getUserInfo(e) {
// 不推荐使⽤getUserInfo获取⽤户信息,⾃2021年4⽉13⽇起,getUserInfo将不再弹出弹窗,并直接返回匿名的⽤户个⼈信息
this.setData({
userInfo: e.detail.userInfo,
hasUserInfo: true
})
} })

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。