<button @click="test()">调用相册</button><image v-bind:src="img"></image> test() { var that = this uni.chooseImage({ sourceType: ['album'], //从相册选择 success(res) { console.log(res.tempFiles[0].path); that.$data.img = res.tempFiles[0].path } })} 效果图