大学生之家,大学生资讯发布平台
大学生之家

小程序分享转发文件wx.shareFileMessage

    发布时间:2025-04-02    阅读:
    来源:大学生之家
wx.shareFileMessage(Object object)
转发文件到聊天

参数
Object object
属性    类型    默认值    必填    说明
filePath    string        是    要分享的文件地址,必须为本地路径或临时路径
fileName    string        否    自定义文件名,若留空则使用filePath中的文件名
success    function        否    接口调用成功的回调函数
fail    function        否    接口调用失败的回调函数
complete    function        否    接口调用结束的回调函数(调用成功、失败都会执行)
示例代码

// callback 写法
  wx.downloadFile({
    url: URL, // 下载url
    success (res) {
      // 下载完成后转发
      wx.shareFileMessage({
        filePath: res.tempFilePath,
        success() {},
        fail: console.error,
      })
    },
    fail: console.error,
  })
 
  // async await 写法
  const { tempFilePath } = await wx.downloadFile({
    url: URL, // 下载url
  })
  // 下载完成后转发
  await wx.shareFileMessage({
    filePath: res.tempFilePath,
  })
计算机学习推荐
  • 扫一扫 分享悦读 ➤
  • 扫码可以分享到微信 qq朋友圈
计算机学习热点