微信小程序在web-view页面做分享,并且把分享的参数传递给小程序

QQ技术交流群 173683866 526474645 欢迎加入交流讨论,打广告的一律飞机票

本demo实现的功能,微信小程序给h5传参,h5给小程序传参

实现代码:


  

js

// index.js
Page({
  data: {
    shareObj: ''
  },
  onLoad: function(options) {
    console.log('options', options)
  },
  bindGetMsg: function(e) {
    this.data.shareObj = e.detail.data[e.detail.data.length - 1];
  },
  // 分享
  onShareAppMessage(options) {
    let shareObj = this.data.shareObj;
    if (shareObj) {
      return {
        title: shareObj.shareTitle,
        desc: shareObj.shareDesc,
        path: shareObj.url,
        imageUrl: shareObj.shareImage,
        success: function(res) {
          console.log(res)
        }
      }
    }
  },
})

html代码




	
		
		
		
		
	

	
		
	

 

你可能感兴趣的:(微信小程序,JS)