微信小程序实现页面分享onShareAppMessage

这篇文章主要介绍了微信小程序实现页面分享onShareAppMessage,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧

效果

微信小程序实现页面分享onShareAppMessage


js

let app = getApp(); Page({ data: { img: "/images/1.jpg" }, onLoad() { }, showShareMenu() { wx.showShareMenu(); console.log("显示了当前页面的转发按钮"); }, hideShareMenu() { wx.hideShareMenu(); console.log("隐藏了当前页面的转发按钮"); }, onShareAppMessage: (res) => { if (res.from === 'button') { console.log("来自页面内转发按钮"); console.log(res.target); } else { console.log("来自右上角转发菜单") } return { title: '妹子图片', path: '/pages/share/share?id=123', imageUrl: "/images/1.jpg", success: (res) => { console.log("转发成功", res); }, fail: (res) => { console.log("转发失败", res); } } } })

html

<view> <image src="https://www.jb51.net/{{img}}" bindtap="img"></image> <view> <button type="default" bindtap="showShareMenu">开启分享</button> <button type="warn" bindtap="hideShareMenu">关闭分享</button> </view> <button type="primary" open-type="share" data-name="pageShare">点击分享</button> </view>

css

page{ height: 100%; } .view{ width: 100%; height: 100%; } .window-1{ display: flex; flex-direction: row; margin: 20rpx 0; } .cover-9{ width: 688rpx; height: 75%; margin: 0 30rpx; border:2rpx solid; border-radius:5px; } button{ margin: 0 10rpx; width: 100%; } #share{ width: 730rpx; }

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/8a0edf0a2f3d72ca95d6ece031d88423.html