小程序分享朋友圈wx.showShareImageMenu
wx.showShareImageMenu(Object object)
参数
Object object
属性 类型 默认值 必填 说明
path 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.showShareImageMenu({
path: res.tempFilePath
})
}
})