美文网首页
当前小程序跳转其他小程序

当前小程序跳转其他小程序

作者: LFBoys | 来源:发表于2018-09-12 16:29 被阅读173次

当前小程序代码:

<navigator target="miniProgram" open-type="navigate" app-id="" path="" extra-data="{{extraData}}" version="develop">跳转到神农识</navigator>

extra-data:传递参数
version:要跳转的版本,develop开发、trial体验版、release线上
extraData格式如下(重要):

extraData: 
{
  "type": "syngenta"
}

extraData是跳转时传递的参数。

目标小程序app.js代码:

onLaunch: function(options) {
   console.log('其他小程序传递过来的参数=======', options.referrerInfo.extraData);
}

相关文章

网友评论

      本文标题:当前小程序跳转其他小程序

      本文链接:https://www.haomeiwen.com/subject/yyxbgftx.html