uni-app微信小程序獲取用戶頭像并保存
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)不易,請(qǐng)轉(zhuǎn)發(fā)者備注下文章來(lái)源(hbsjsd.cn)【速建時(shí)代】。