⼩程序实现页⾯分享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 class="view">
<image class="cover-9" src="{{img}}" bindtap="img"></image>
<view class="window-1">
<button type="default" id="open" bindtap="showShareMenu">开启分享</button>
<button type="warn" id="close" bindtap="hideShareMenu">关闭分享</button>
</view>
<button type="primary" open-type="share" data-name="pageShare" id="share">点击分享</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;
}
以上就是本⽂的全部内容,希望对⼤家的学习有所帮助,也希望⼤家多多⽀持。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。