vue裡面路由傳參的三種方式

2022-07-21 17:42:19 字數 630 閱讀 6464

1、方式一

通過query的方式也就是?的方式路徑會顯示傳遞的引數

html的方式

js的方式

query傳參

接收引數

this.$route.query.page

2、方式二

通過params的方式,路徑不會顯示傳遞的引數

html的方式

js的方式

params傳參

接收引數

this.$route.params.page

3、方式三

通過:冒號的的形式傳遞傳參

1、在配置檔案裡以冒號的形式設定引數。我們在/src/router/index.js檔案裡配置路由。

router-link>

接收引數

this.$route.params.num

vue路由傳參三種方式

vue路由傳參分為三種方式 url形如 http localhost 8080 path 1 true 1 方法中使用模板字串 methods 2 在路由配置檔案中進行引數名配置 3 子頁面通過params接收引數 export default test02 created this console...

Vue路由傳參的三種方式

第一種 父元件 getdescribe1 id 路由 另外路由需要配置,在path中新增 id來對應 router.push 中path攜帶的引數 這種方法引數值會跟在url後面,子元件通過this.route.params.id獲取傳過去的引數 第二種父元件 通過路由屬性中的name來確定匹配的路...

vue路由傳參的三種基本方式

this.router.push 路由配置 在home元件中獲取引數值 this.route.params.id 複製 通過name來匹配路由,通過param來傳遞引數 this.router.push 用params傳遞引數,不使用 id home元件中獲取引數 this.route.params...