首页 > 编程知识 正文

小程序分享链接,怎么把小程序分享链接复制出来

时间:2023-05-04 09:28:09 阅读:267257 作者:2443

------2020-07-07------ 重磅消息重磅消息重磅消息重磅消息重磅消息重磅消息重磅消息

目前小程序已经支持分享到朋友圈,

只有安卓机好使。

测试机型:小米9 miui12  20.7.2  微信版本7.0.16

体验地址:扫码进入小程序 ---- 点击右上角三个点

技术公众号

 

1.先看案例

2.微信开发文档:

https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/share-timeline.html

https://developers.weixin.qq.com/miniprogram/dev/reference/api/Page.html#onShareTimeline


https://developers.weixin.qq.com/miniprogram/dev/api/share/wx.showShareMenu.html

 

3.代码

//index.js//获取应用实例const app = getApp()Page({ data: { }, onLoad: function () { wx.showShareMenu({ menus: ['shareAppMessage', 'shareTimeline'], success(res) { console.log(res) }, fail(e) { console.log(e) } }) }, onShareAppMessage(){ }, onShareTimeline(){ } }) 4.我的微信   LJT-917

 

 

版权声明:该文观点仅代表作者本人。处理文章:请发送邮件至 三1五14八八95#扣扣.com 举报,一经查实,本站将立刻删除。