温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

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

发布时间:2021-04-27 10:13:23 来源:亿速云 阅读:577 作者:小新 栏目:web开发

小编给大家分享一下微信小程序怎么实现页面分享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; }

以上是“微信小程序怎么实现页面分享onShareAppMessage”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注亿速云行业资讯频道!

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI