share-button.js 436 B

1234567891011121314151617
  1. Page({
  2. onShareAppMessage() {
  3. return {
  4. title: '转发按钮',
  5. path: 'page/API/pages/share-button/share-button'
  6. }
  7. },
  8. handleTapShareButton() {
  9. if (!((typeof wx.canIUse === 'function') && wx.canIUse('button.open-type.share'))) {
  10. wx.showModal({
  11. title: '当前版本不支持转发按钮',
  12. content: '请升级至最新版本微信客户端',
  13. showCancel: false
  14. })
  15. }
  16. }
  17. })