1. 先来看 index.wxml 文件
    1. <view bindtap="user">获取信息</view>
    2. <image src="{{img}}"></image>
    3. <text>{{name}}</text>
    在来看 index.js 文件
    
      data:{
        img:'',
        name:''
      },    
    
       //获取个人信息
        user(){
          var that = this
          wx.getUserProfile({
            desc: '我要看你信息',
            // 如果成功会调用方法块里面的代码
            success:function(e){
              console.log(e);
            }
          })
        },
    
    先来看打印的JSON信息:<br />![image.png](https://cdn.nlark.com/yuque/0/2022/png/26240361/1646124267688-474d0e4a-039a-4321-9864-3dc6a42e3eba.png#clientId=u740fc979-29eb-4&crop=0&crop=0&crop=1&crop=1&from=paste&height=191&id=u931bcaa1&margin=%5Bobject%20Object%5D&name=image.png&originHeight=382&originWidth=1030&originalType=binary&ratio=1&rotation=0&showTitle=false&size=51596&status=done&style=none&taskId=ubd826ea6-8904-4ddd-bc0d-79ab48478ed&title=&width=515)<br />然后根据需要的数据,找到对应的值
    
        //获取个人信息
        user(){
          var that = this
          wx.getUserProfile({
            desc: '我要看你信息',
            // 如果成功会调用方法块里面的代码
            success:function(e){
              that.setData({
                 //名字
                name:e.userInfo.nickName,
                //头像
                img:e.userInfo.avatarUrl
              })
            }
          })
        },
    
    
    
    
        //第二种方式获取个人信息
        test3(){
          var that = this
          wx.getUserProfile({
            desc: '我要看你信息',
            // 如果成功会打印信息
            success:(e) => {
              that.setData({
                img:e.userInfo.avatarUrl
              })
            }
          })
        },
    

    效果图:
    image.png