微信小程序读取分享参数

57 阅读1分钟
onLoad(options) {
     // 海报分享 小程序码
     if (options.hasOwnProperty('scene')) {
      const xx = decodeURIComponent(options.scene);//读到小程序码内的参数
    }
    //普通分享 点击右上角分享
    if (options.shareFrom) {
      const xxx = options.xxx;
    }
    this.login();
  },