首頁  >  文章  >  微信小程式  >  怎麼將小程式分享到朋友圈

怎麼將小程式分享到朋友圈

王林
王林轉載
2021-01-25 09:17:233567瀏覽

怎麼將小程式分享到朋友圈

好消息:

2020-07-07,小程式開始支援分享到朋友圈(只有安卓機好使)。

(學習影片分享:程式設計入門

測試機種:小米9 miui12  20.7.2  微信版本7.0.16

#體驗位址:掃碼進入小程式---- 點選右上角三個點

技術公眾號碼

怎麼將小程式分享到朋友圈

先看案例

怎麼將小程式分享到朋友圈

怎麼將小程式分享到朋友圈

微信開發文件:

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

代碼

//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(){
    
  }
  
})

我的微信   LJT-917

相關建議:小程式開發教程

以上是怎麼將小程式分享到朋友圈的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:csdn.net。如有侵權,請聯絡admin@php.cn刪除