收藏
回答

wx.getFileSystemManager().getFileInfo 失败?

wx.getFileInfo 即将废弃,请使用 wx.getFileSystemManager().getFileInfo

但是更新后,无法使用呢?怎么处理

err=> {errMsg: "getFileInfo:fail file not exist"}errMsg: "getFileInfo:fail file not exist"__proto__: Object



    // wx.getFileInfo 即将废弃,请使用 wx.getFileSystemManager().getFileInfo
    // return
    try {
      const resFile = await wx.getFileInfo({
        filePath: tmpFilePath,
        digestAlgorithm"md5",
      })
    } catch (error) {
      
    }
 


    const resFile2 = await wx.getFileSystemManager().getFileInfo({
      filePath: tmpFilePath,
      digestAlgorithm"md5",
      success(res) {
        console.log("resFile2 res=>", res)
      },
      fail(err) {
        console.log("resFile2 err=>", err)


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

1 个回答

  • Mr.Zhao
    Mr.Zhao
    2023-02-15

    2023-02-15
    有用
    回复 5
    • 同步
      同步
      2023-02-15
      您好,这个是我的代码片段,图片是通过 wx.chooseImage 获取的呢。更换后无法使用(wx.getFileInfo 即将废弃,请使用 wx.getFileSystemManager().getFileInfo)


      https://developers.weixin.qq.com/s/kzE5L2mP7mGi
      2023-02-15
      回复
    • 同步
      同步
      2023-02-15回复同步
      2023-02-15
      回复
    • Mr.Zhao
      Mr.Zhao
      2023-02-15回复同步
      2023-02-15
      回复
    • 同步
      同步
      2023-02-15回复Mr.Zhao
      你的开发工具是 稳定版吗?
      2023-02-15
      回复
    • 同步
      同步
      2023-02-15回复Mr.Zhao
      好的,我回退到旧版本后能从成功调用,谢谢
      2023-02-15
      回复
登录 后发表内容