收藏
回答

wx.downloadFile 个别机型无法下载文件,报错603300?

发布的小程序,预览下载文件,同样接口,同样参数,魅族20pro机型报错,苹果和大部分安卓可以     

wx.downloadFile({

        url: pdf_url, 

        header: { token: uni.getStorageSync("access_token") },

        success: function (res) {

          var Path = res.tempFilePath;

          if (res.statusCode === 200) {

            //成功

            var Path = res.tempFilePath;

            wx.openDocument({

              filePath: Path,

              fileType: Type,

              showMenu: that.shuju.allowDownload == "1" ? true : false,

              success: function (res) {

                console.log("打开PDF成功");

              },

            });

          } else {

            console.log("打开PDF失败");

          }

        },

        fail: function (res) {

          console.log(res); //失败

        },

      });

回答关注问题邀请回答
收藏

2 个回答

登录 后发表内容