ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
>功能实现:点击选择本地图片 --wxml-- 默认设置isEmpty为true,当choose后设置为false ``` <image src="{{isEmpty? '/swiper/l1.jpg':imgUrl}}" catchtap="c_click"/> ``` --js-- ``` data: { isEmpty: true }, c_click(){ wx.chooseImage({ count: 9, sizeType: ['original','compressed'], sourceType: ['album','camera'], success: (result)=>{ var tempFilePaths = result.tempFilePaths; this.setData({ imgUrl: tempFilePaths, isEmpty: false }) } }); } ```