收藏
回答

用户刚清掉缓存,依然"downloadFile:fail",请问这是什么问题?

有用户已经清掉缓存了,然后加载的时候依然报这个错误,downloadFile:fail the maximum size of the file storage limit is exceeded,请问这个应该如何处理呢?

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

1 个回答

  • Forever
    Forever
    2020-06-15

    能发一下src吗?

    2020-06-15
    有用
    回复 6
    • Nothing
      Nothing
      2020-06-16
      let task = wx.downloadFile({
                              url: plat.cdnUrl + 'resource-' + app.resver + '.zip',
                              filePath: localZipFile,
                              timeout: 120000,
                              success: function (res) {
                                  if (res["statusCode"] == 200) {
                                      let filePath = res["tempFilePath"]; // 下载路径
                                      that.toUnZipFile(localZipFile, root,
                                          () => {
                                              egret.localStorage.setItem("zipVersion", app.resver);//更新资源版本
                                              reslove(root);
                                          },
                                          (res) => {
                                              reject(res)
                                          })
                                  }
                                  else {
                                      reject("资源下载失败1,请检测网络后重试")
                                  }
                              },
                              fail: function (e) {
                                  reject("资源下载失败2,请检测网络后重试" + JSON.stringify(e));
                              }
                          });
      2020-06-16
      回复
    • Forever
      Forever
      2020-06-16回复Nothing
      你是怎么清理缓存的?
      2020-06-16
      回复
    • Nothing
      Nothing
      2020-06-16回复Forever
      存储空间中的清理缓存,不知道是不是这样清,还有一个问题,问一下maximum size是存储超过了多少Mb会报这个错?
      2020-06-16
      回复
    • Forever
      Forever
      2020-06-16回复Nothing
      超过50M会报错,小游戏有本地文件路径的缓存,本地缓存路径的缓存
      2020-06-16
      回复
    • Nothing
      Nothing
      2020-06-16回复Forever
      那存储空间中清理缓存可以清掉小游戏中的缓存么?
      2020-06-16
      回复
    查看更多(1)
登录 后发表内容
问题标签