wx.shareImageToGroup(Object object)

基础库 3.7.8 开始支持,低版本需做兼容处理。

以 Promise 风格 调用:支持

微信小程序插件:不支持

相关文档: 聊天工具模式

功能描述

转发图片到聊天

参数

Object object

属性 类型 默认值 必填 说明
imagePath string 要分享的图片地址,必须为本地路径或临时路径
needShowEntrance boolean true 分享的图片消息是否要带微信小程序入口
entrancePath string 从消息微信小程序入口打开微信小程序的路径,默认为聊天工具启动路径
success function 接口调用成功的回调函数
fail function 接口调用失败的回调函数
complete function 接口调用结束的回调函数(调用成功、失败都会执行)

示例代码


  wx.downloadFile({
    url: 'https://res.wx.qq.com/wxdoc/dist/assets/img/demo.ef5c5bef.jpg',
    success: (res) => {
      wx.shareImageToGroup({
        imagePath: res.tempFilePath
      })
    }
  })