uniapp小程序中实现点击按钮分享图片到微信

在 uniapp 中,可以使用 uni.share() 函数来实现点击按钮分享图片到微信。

首先,在需要分享的页面中引入 uni.share 模块:

import uni from '@dcloudio/uni-h5'

然后,在按钮的点击事件处理函数中调用 uni.share() 函数即可。例如:

uni.share({
    
     
     provider: "weixin",
    scene: "WXSceneSession", // 分享到微信好友
    type: 2,
    imageUrl: '图片地址',
    success: function(

猜你喜欢

转载自blog.csdn.net/weixin_35752122/article/details/129060323
今日推荐