index页面,导航时页面地址用“?”加上参数。

bindRoute:function(){
    wx.navigateTo({
      url:'../route/route?id=1'
    })
  },

route页面,在onLoad方法中接收参数

onLoad:function(e){
    this.setData({
      id:e['id']
    })
  }

发表评论

您的电子邮箱地址不会被公开。 必填项已用*标注