Page({ data: { imgurl:"" }, onLoad: function (options) { }, browse:function() { let that=this; wx.chooseMedia({ count: 1, mediaType: ['image','video'], sourceType: ['album', 'camera'], maxDuration: 30, camera: 'back', success(res) { console.log(res.tempFiles[0].tempFilePath) wx.setStorageSync('path',res.tempFiles[0].tempFilePath) wx.switchTab({ url: '../map/map', }) } }) } })