uniapp开发小程序-pc端小程序下载文件

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) {
           // 是微信特有的api,pc端会出现需要下载到哪里的文件框,所以没有实现预览功能,自己下载完自己点开看呗
            wx.saveFileToDisk({
              filePath: res.filePath,
              success: () => {
                util.showSuccessToast("保存成功");
              },
              fail: (err) => {
                util.showErrorToast("保存失败");
                console.log("err", err);
              },
            });
          }
        },
      });
    },

你可能感兴趣的:(uni-app,小程序,前端)