收藏
回答

企业微信跳转小程序参数获取?

  1. wx.invoke('launchMiniprogram', {
  2. "appid" : "wx062aaa5507909631", // 需跳转的小程序appid
  3. "path" : "pages/home/index.html", // 所需跳转的小程序内页面路径及参数。非必填
  4. }, function(res) {
  5. if(res.err_msg == "launchMiniprogram:ok") {
  6. // 正常
  7. } else {
  8. // 错误处理
  9. }
  10. }
  11. );

用的是企业微信这边的js-api跳转微信小程序,想问下链接后拼的参数用何种方式获取?

回答关注问题邀请回答
收藏

1 个回答

  • A.G.A.I.N
    A.G.A.I.N
    2021-08-12

    对应页面onload 方法的第一个参数接收

    onload(option){
      console.log('参数是', option)  
    }
    
    2021-08-12
    有用 1
    回复
登录 后发表内容