toGo(rstProductNO) {
                wx.navigateTo({
                    url: '../projectDetail/projectDetail?id='+ rstProductNO
                });
            }

接收,在另一个页面的onLoad生命周期函数中

        onLoad(options) {
            this.rstProductNO = options.id
        },

就可以拿到传递过来的参数

 

 

2020/9/16 - - - -

小程序跳转传递多个参数

       confirm() {
                uni.navigateTo({
                    url:'B-Schedule?date=' + this.date + '&time=' + this.time
                })
            }

如上代码,跳转即可携带多个参数,接收同上