jquery 网站框架,网站建设必备条件,电脑网页设计,深圳服务网站建设fileName包含文件名后缀名#xff0c;比如test.png这种格式 api.DownloadTmtFile后端接口返回的是文件的二进制流 值得注意的是#xff0c;微信开发者工具中是测试不了wx.saveFileToDisk的#xff0c;需要真机或者体验版测试 handleDownload(fileName) {if (!fileName) retu…fileName包含文件名后缀名比如test.png这种格式 api.DownloadTmtFile后端接口返回的是文件的二进制流 值得注意的是微信开发者工具中是测试不了wx.saveFileToDisk的需要真机或者体验版测试 handleDownload(fileName) {if (!fileName) return;uni.downloadFile({url: api.DownloadTmtFile ?id this.id,filePath: wx.env.USER_DATA_PATH / fileName,success(res) {console.log(res, res);if (res.statusCode 200) {// 是微信特有的apipc端会出现需要下载到哪里的文件框所以没有实现预览功能自己下载完自己点开看呗wx.saveFileToDisk({filePath: res.filePath,success: () {util.showSuccessToast(保存成功);},fail: (err) {util.showErrorToast(保存失败);console.log(err, err);},});}},});},