收藏
回答

wx.showFileMessage()失灵了,无法使用?

sharefile(e){
    var i = e.currentTarget.dataset.index
    wx.cloud.downloadFile({
      fileID:this.data.list[i].fileID,
      success(res){
              // 下载完成后转发
      console.log(res.tempFilePath)
        wx.shareFileMessage({
          filePath: res.tempFilePath,
          success(res){
            console.log(res)
          },
          fail(err){
            console.log(err)
          }
        })
      }
    })
  },

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

1 个回答

  • Socket
    Socket
    2022-05-20

    一开始是可以用的,后来就没反应了,既不报错也不运行,写成了promise风格之后报错wx.shareFileMessage is not a function. 不要问我要什么代码片段,因为片段又可以运行了,如果是我代码的问题,最开始为什么可以运行呢》?

    2022-05-20
    有用
    回复
登录 后发表内容