微信小程序怎样分享一个链接到朋友圈,小程序分享到朋友圈,微信小程序如何分享到朋友圈,小程序链接分享到朋友圈

------2020-07-07------

重磅消息重磅消息重磅消息重磅消息重磅消息重磅消息重磅消息

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

只有安卓机好使。

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

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

微信小程序怎样分享一个链接到朋友圈,小程序分享到朋友圈,微信小程序如何分享到朋友圈,小程序链接分享到朋友圈_第1张图片

1.先看案例

微信小程序怎样分享一个链接到朋友圈,小程序分享到朋友圈,微信小程序如何分享到朋友圈,小程序链接分享到朋友圈_第2张图片微信小程序怎样分享一个链接到朋友圈,小程序分享到朋友圈,微信小程序如何分享到朋友圈,小程序链接分享到朋友圈_第3张图片

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.我的前端技术交流群(qq)/ 也有微信群(vip群-活跃度极高 ,想进加qq群 @群主)

微信小程序怎样分享一个链接到朋友圈,小程序分享到朋友圈,微信小程序如何分享到朋友圈,小程序链接分享到朋友圈_第4张图片

你可能感兴趣的:(小程序分享,微信小程序,朋友圈,小程序分享)