1.形如 http://localhost:8080/#/book?id=****javascript
①路由配置java
②路由定向連接,以query傳參idthis
另外,獲取query傳遞的參數id用 this.$route.query.id spa
2.形如 http://localhost:8080/#/book/****3d
①路由配置router
②路由定向連接,以params傳參idblog
// 當匹配到一個路由時,參數值會被設置到 this.$route.params,能夠在每一個組件內使用。 // 能夠經過this.$route.params.id來取上動態的id <router-link :to="{path: '/book/' + this.$route.params.id}" > **** </router-link> // 還能夠用命名路由的方式: <router-link :to="{ name: 'book', params:{ id: this.$route.params.id }}" > **** </router-link> // 還能夠用router.push()的方式 router.push({name:'book', params: { id: this.$route.params.id}}) // 以上三種方式均可以實現跳轉,均可以經過this.$route.params來取到參數
獲取params傳遞的參數id用 this.$route.params.id ip