uni-app 小程序用户信息之头像昵称填写

x33g5p2x  于9个月前 转载在 uni-app  
字(3.3k)|赞(0)|评价(0)|浏览(393)

小程序获取用户头像昵称,微信又叒做妖,废除之前的接口,改成了头像昵称填写

通知:微信小程序端基础库2.27.1及以上版本,wx.getUserProfile 接口 被收回,详见《小程序用户头像昵称获取规则调整公告》

1.回收uni.getUserInfo接口可获取用户授权(返回的全部是匿名数据)

4月28日24时后发布的新版本小程序,开发者调用wx.getUserInfo或将不再弹出弹窗,直接返回匿名的用户个人信息,获取加密后的openID、unionID数据的能力不做调整。

2.回收getUserProfile 来授权返回微信用户信息 (返回的全部是匿名数据)

3.使用:头像昵称填写能力

截取评论展示功能介绍:描述非常生动形象

4.Demo展示

css样式有采用:ColorUI-UniApp 请自行导入

案例地址:https://gitee.com/jielov/uni-app-tabbar/blob/master/pages/wx_login/wx-mandate-write.vue

  1. <!--
  2. *@author: Jay
  3. *@description: 微信小程序 头像昵称填写
  4. * @createTime: 2022-11-23 10:51:34
  5. -->
  6. <template>
  7. <view>
  8. <!-- 获取头像 -->
  9. <view class="bg-gray padding-top-sm">
  10. <button class="avatar-button" open-type="chooseAvatar" @chooseavatar="onChooseAvatar">
  11. <image :class="avatarUrl ==''?'avatar-img':'' " :src="avatarUrl"></image>
  12. </button>
  13. </view>
  14. <!-- 输入用户名 -->
  15. <view class="nickname-code">
  16. <view class="nickname-title">用户名:
  17. </view>
  18. <input type="nickname" class="weui-input" placeholder="请输入用户名" v-model="nickname" />
  19. </view>
  20. <!-- 手机号登录 -->
  21. <view class="padding-lr padding-top flex flex-direction">
  22. <button class="cu-btn bg-green round lg text-white" open-type="getPhoneNumber"@getphonenumber="getUserPhone" :disabled="explainName == '' ? false : true">微信手机号登录</button>
  23. </view>
  24. <view class="text-red text-df padding-lr-xl padding-tb-xs text-center">{{explainName}}
  25. </view>
  26. </view>
  27. </template>
  28. <script>export default{
  29. data() {
  30. return{
  31. //头像
  32. avatarUrl: "",
  33. //用户名
  34. nickname: "",
  35. //登录 code
  36. logCode: "",
  37. //微信手机号登录
  38. disabled: true,
  39. }
  40. },
  41. computed: {
  42. explainName() {
  43. let name = ""
  44. if (this.avatarUrl == '') {
  45. name = "请授权用户头像"
  46. returnname;
  47. }
  48. if (this.nickname == '') {
  49. name = "请输入用户名"
  50. returnname;
  51. }
  52. returnname;
  53. }
  54. },
  55. onLoad() {
  56. this.userCode()
  57. },
  58. methods: {
  59. //获取code
  60. userCode() {
  61. let that = thisuni.login({
  62. provider: 'weixin',
  63. success(res) {
  64. console.log("登录code", res);
  65. that.logCode =res.code
  66. }
  67. })
  68. },
  69. //获取用户头像
  70. onChooseAvatar(e) {
  71. //console.log(e.detail);
  72. this.avatarUrl =e.detail.avatarUrl
  73. },
  74. //获取用户手机号
  75. getUserPhone(e) {
  76. if (e.detail.errMsg == 'getPhoneNumber:ok') {
  77. //出来手机号数据
  78. console.log("手机号数据", e)
  79. /*在这一步把 手机号 头像 昵称 code 一次性全部丢给后端
  80. */} else{
  81. this.$operate.toast({
  82. title: '授权失败无法登录!'})
  83. }
  84. },
  85. }
  86. }
  87. </script>
  88. <style>page {
  89. background-color: #fff;
  90. }
  91. </style>
  92. <style lang="scss" scoped>
  93. //用户头像
  94. .avatar-button {
  95. width: 120rpx;
  96. padding: 0;
  97. border-radius: 50%;
  98. margin: 30rpx auto 0auto;
  99. image {
  100. width: 120rpx;
  101. height: 120rpx;
  102. border-radius: 50%;
  103. display: block;
  104. border: 4rpx solid #d8bf9f;
  105. }
  106. }
  107. .avatar-img {
  108. z-index: 3;
  109. position: relative;
  110. &:before {
  111. content: '头像授权';
  112. position: absolute;
  113. top: 0;
  114. left: 0;
  115. width: 120rpx;
  116. height: 120rpx;
  117. //line-height: 40rpx;
  118. display: flex;
  119. align-items: center;
  120. justify-content: center;
  121. color: #ffffff;
  122. font-size: 25rpx;
  123. background-color: rgba(130, 128, 127, 0.5);
  124. z-index: 4;
  125. }
  126. }
  127. //用户昵称
  128. .nickname-code {
  129. display: flex;
  130. align-items: center;
  131. padding: 60rpx 20rpx 20rpx 20rpx;
  132. margin-top: -40rpx;
  133. background-color: #ffffff;
  134. border-radius: 50rpx 50rpx 0 0;
  135. .nickname-title {
  136. font-size: 30rpx;
  137. color: #333;
  138. margin-right: 15rpx;
  139. }
  140. .weui-input {
  141. flex: 1;
  142. color: #333;
  143. font-size: 30rpx;
  144. }
  145. }
  146. </style>

小程序 头像昵称填写

本文来自博客园,作者:虚乄,转载请注明原文链接:https://www.cnblogs.com/lovejielive/p/16918134.html

相关文章

最新文章

更多