欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

微信小程序 重新刷新页面

程序员文章站 2024-03-13 23:35:10
...

进入小程序页面时,onLoad默认是一个页面只会调用一次,当退出来再用二维码进入时,页面还未销毁,此时只会调用onShow方法。

因为二维码带有相关参数,如果不使用onLoad 则达不到我们的需求

因为onLoad方法 需要传当前页面参数 才可以获得二维码 我们可以通过getCurrentPages()获得

getCurrentPages 文档


//获得二维码的值
getQrCodeParam: function (options) {
    let sceneParam = decodeURIComponent(options.scene);
    console.log(sceneParam);  
  },

onLoad: function (options) {
    this.getQrCodeParam(options); //获得二维码方法
  },

onShow: function () {
    const pages = getCurrentPages()
    const currentPage = pages[pages.length - 1]
    this.onLoad(currentPage.options);
  }

 

相关标签: js 微信小程序