wx.getFileSystemManager().readFile的文件90M的时候没有返回吗?

发布于 7 年前作者 chao231509 次浏览最后编辑 7 年前来自 ask
当我选择的文件大于90M的时候 控制台只打印的res,并没有打印res2,也没有报错信息
wx.chooseMessageFile({
  count: 1,
  success (res) {
  console.log(res)
  wx.getFileSystemManager().readFile({
    filePath:res.tempFiles[0].path,
    success: function(res2) {
      console.log(res2)
    }
  })
})

1 回复
shenjing
shenjing1 楼5 年前

请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。