程序 web-view 如何给外链接的 h5 页面传递参数和值

最近做项目的时候发现这种方法还是比较方便的。类似小程序页面之间的传值形式,举个例子:

这是跳转web-view的界面

   wx.navigateTo({
      url: `/pages/my/uPage/up?card=${that.data.activeCouponPass}&sign=${res.data.result.sign}&time=${res.data.result.time}&uid=${res.data.result.time}`
    });

  onLoad: function (options){
    const that=this;
    console.log(options)
    if (options.card){
        console.log('1')
      that.setData({
        active: false,
        urlPage: `https://www.kangou.cn/?partnername=shenzhenairlines&card=${options.card}&sign=${options.sign}&time=${options.time}&uid=${options.uid}#wechat_redirect`,
      })
      console.log(`https://www.kangou.cn/?partnername=shenzhenairlines&card=${options.card}&sign=${options.sign}&time=${options.time}&uid=${options.uid}#wechat_redirect`)
    }

  },

下面就是 小程序跳转的界面


程序 web-view 如何给外链接的 h5 页面传递参数和值_第1张图片
image.png

你可能感兴趣的:(程序 web-view 如何给外链接的 h5 页面传递参数和值)