小程序接收参数总结

//app.js 项目:jianzhi插件
onLaunch: function (options) {
    if(options.query.parentid!=undefined){
      console.log("右上角分享进入")
      var parentid = options.query.parentid;
    }else if(options.query.scene!=undefined){
      console.log("生成的小程序码进入");
      var temp = decodeURIComponent(options.query.scene)
      var parentid =temp.split("=")[1]
    }else{
      var parentid=0;
    }
    API.checkSession({parentid:parentid});
  },
//其他页面 项目jianzhi
onload: function (options) {
    if(options.parentid!=undefined){
      console.log("右上角分享进入")
      var parentid = options.parentid;
    }else if(options.scene!=undefined){
      console.log("生成的小程序码进入");
      var temp = decodeURIComponent(options.scene)
      var parentid =temp.split("=")[1]
    }else{
      var parentid=0;
    }
    API.checkSession({parentid:parentid});
  },

发表评论