酷炫小程序

trial.js 603B

123456789101112131415161718192021222324252627282930313233343536
  1. // pages/index_01/index_01.js
  2. Page({
  3. /**
  4. * 页面的初始数据
  5. */
  6. data: {
  7. },
  8. /**
  9. * 生命周期函数--监听页面加载
  10. */
  11. onLoad: function (options) {
  12. },
  13. /**
  14. * 用户点击右上角分享
  15. */
  16. onShareAppMessage: function (res) {
  17. if (res.from === 'button') {
  18. // 来自页面内转发按钮
  19. console.log(res.target)
  20. }
  21. return {
  22. title: app.data.shareMsg,
  23. path: '/pages/startPage/startPage',
  24. success: function (res) {
  25. // 转发成功
  26. },
  27. fail: function (res) {
  28. // 转发失败
  29. }
  30. }
  31. }
  32. })