+
80
-

微信小程序如何分享图片给微信好友?

微信小程序如何分享图片给微信好友?


网友回复

+
0
-

网络图片分享

wx.downloadFile({
    url: 'https://res.wx.qq.com/wxdoc/dist/assets/img/demo.ef5c5bef.jpg',//分享的图片的链接
    success: (res) => {
      wx.showShareImageMenu({
        path: res.tempFilePath
      })
    }
  })

本地wxfile://文件分享

wx.showShareImageMenu({
        path: "wxfile://"
      })

我知道答案,我要回答