常見問題

uni-app微信小程序獲取用戶頭像并保存

常見問題

4522

字體:

methods中使用方法

獲取微信用戶名稱
onKeyInput: function(event) {
    this.nickname = event.target.value
},
獲取頭像并且轉(zhuǎn)換成Base64 
onChooseAvatar(e) {
    let imgBase64 = wx.getFileSystemManager().readFileSync(e.detail.avatarUrl, 'base64');
    let background = 'data:image/png;base64,' + imgBase64;
    this.avatarUrl = background
},


[聲明]原創(chuàng)不易,請轉(zhuǎn)發(fā)者備注下文章來源(hbsjsd.cn)【速建時代】。