1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
| Page({
/** * 页面的初始数据 */ data: { gender: '女', username: '5秒种的记忆', imgUrl: '/images/avatar.png' }, //选择头像 changeAvatar: function () { wx.chooseImage({ count: 1, //最多可以选择9张图片 sizeType: ['original', 'compressed'], //图片尺寸原图,压缩图 sourceType: ['album', 'camera'], //图片来源, 从相册选图,使用相机 success: res => { //tempFilePath可以作为img标签的src属性显示图片 var tempFilePaths = res.tempFilePaths this.setData({ imgUrl: tempFilePaths }) } }) }, //跳转到"个人资料修改页" jump: function () { wx.navigateTo({ //为了避免用户名中的特殊字符破坏字符串结构,使用encodeURIComponent()编码 url: '/pages/modify/modify?username=' + encodeURIComponent(this.data.username) + '&gender=' + encodeURIComponent(this.data.gender), }) } })
|