获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
你好上传是wx:file上传不上去什么问题
上传聊天的文件,真机返回wx:file开头路径,无法下载用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() } }) } })
01-02