utils/util
const wxShareImg = function (url) {
wx.downloadFile({
url, // 分享的图片的链接
success: (res) => {
wx.showShareImageMenu({
path: res.tempFilePath
})
}
})
}
module.exports = {
wxShareImg, wxShareImg
}
分享:
第一种:在page.js中实现onShareAppMessage,便可在小程序右上角选择分享该页面
第二种:自定义按钮实现分享 <button open-type=’share’> </button>