H5页面跳转到小程序页面

1、首先要去微信公众平台配置web-view合法域名

2、开发H5页面,并引入weixin-js-sdk。

H5页面跳转到小程序页面_第1张图片

 3、添加按钮操作跳转页面

const params = new URLSearchParams(window.location.search)
    const q = params.get('id') ?? ''
    console.log(q)
    let btn = document.querySelector('.btn')
    btn.onclick = function () {
        wx.miniProgram.redirectTo({
            url: `../bulk/bulklists/bulklists?id=${q}`
        })
    }

4、小程序页面要使用web-view组件 里面src属性就是H5页面的链接

jump(e) {
    wx.navigateTo({
      url: `../insurancerules/insurancerules?url=${encodeURIComponent('H5页面链接'+'?id=111111')}`,
    })
  }

5、小程序页面接收链接要处理

 onLoad(options) {
    this.setData({
      url: decodeURIComponent(options.url),
    })
  }

你可能感兴趣的:(微信小程序,小程序,前端,javascript)