实训日志day 4

mine页面:显示手机信息,获取昵称和头像

1.wx.getSystemInfo(Object object)

获取系统信息

success function   接口调用成功的回调函数
fail function   接口调用失败的回调函数
complete function   接口调用结束的回调函数(调用成功、失败都会执行)

 

重要的js内容

  data: {
    uicon:'../../assets/icons/my.png',
    uname:'用户名',
    model:'',
    system:'',
    screenHeight:'',
    screenWidth:''
  },

  /**
   * 生命周期函数--监听页面加载
   */
  onLoad: function (options) {
    // this
    var _this = this;
    // 获取手机系统信息
    wx.getSystemInfo({
      success: function (res) {
        console.log(res);
        _this.setData({
          model: res.model,
          system: res.system,
          screenHeight: res.screenHeight,
          screenWidth: res.screenWidth
        })
      }
    });
    wx.getSetting({
      success(res) {
        if (res.authSetting['scope.userInfo']) {
          // 已经授权,可以直接调用 getUserInfo 获取头像昵称
          wx.getUserInfo({
            success: function (res) {
              _this.setData({
                uicon: res.userInfo.avatarUrl,
                uname: res.userInfo.nickName
              })
            }
          })
        } else {
          bindGetUserInfo();
        }
      }
    });
  },

 wxml


  
    

    
    {{uname}}
  
  手机型号:{{model}}
  手机版本号:{{system}}
  手机屏幕分辨率:{{screenWidth}} * {{screenHeight}}

  

mine页面存放背景图片 


  
    

    
    {{uname}}
  


调节背景图片和昵称的大小位置

.container{
  width: 100%;
  height: 100%;
}
.auto-img{
  width: 100%;
  height: 100%;
  display: block;
}
.usericon{
  height:200rpx;
  width:200rpx;
  border-radius:50%;
}
.bg>text{
  color: white;
}

实训日志day 4_第1张图片

你可能感兴趣的:(实训日志day 4)