用wx.chooseMessageFile上传聊天界面的文件,真机的时候返回的path是wx:file开头,
用wx.downloadFile下载报错downloadFile:fail url scheme is invalid
但是用开发者工具的时候返回的是http开头,是可以下载
1是上传方法,2是下载方法
1、wx.chooseMessageFile({
count: 3,
type: ‘file’,
success(res) {
this.setState({
path: res.tempFiles,
});
}
})
2、wx.downloadFile({
url: path,
success (res) {
wx.openDocument({
filePath: res.tempFilePath,
success: function (res) {
wx.hideLoading()
}
})
}
})