wx.getFileSystemManager().readFile的文件90M的时候没有返回吗?
发布于 6 年前 作者 chao23 1383 次浏览 来自 问答
当我选择的文件大于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 回复

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

回到顶部