让前端飞微信小程序开发码农的世界

mpvue页面跳转及传值

2019-02-28  本文已影响1人  honey缘木鱼

vue中 使用 vue-router 来进行路由跳转的。mpvue中只能通过以下几种方式跳转:
(1).a 标签

<a href="/pages/commemtList/main?id=1236478365">

(2).普通跳转navigateTo

godetails(id){
          const url = '../goodsDetails/main?id='+id
          wx.navigateTo({ url })
      }

(3).<navigator></navigator>标签

<navigator url="/pages/commemtList/main?id=1236478365"></navigator>

(4).底部导航跳转 switchTab

// 加入购物车
          addCart () {
              const url = '../logs/main'
               wx.switchTab({url})
          },

接受页面传值方式:
(1).在onLoad中

onLoad (options) {
      let id = options.id
    },

(2).通过 this.root.mp.query

mounted(){
      this.goodId = this.$root.$mp.query.id
    }

在所有 页面 的组件内可以通过 this.root.mp.query 进行获取小程序在 page
onLoad 时候传递的 options。要注意:写在mounted函数里,写到created会报如下图错误:


(3).在所有的组件内可以通过 this. root. mp.appOptions 进行获取小程序在 app
onLaunch/onShow 时候传递的 options。
上一篇 下一篇

猜你喜欢

热点阅读