uniapp 微信小程序获取头像方法
<button open-type="chooseAvatar" @chooseavatar="onChooseAvatar">获取头像</button>
onChooseAvatar(e) {
const {
avatarUrl
} = e.detail
console.log( e)
},
微信原生语法
<button class="avatar-wrapper" open-type="chooseAvatar" bind:chooseavatar="onChooseAvatar">
获取头像
</button>