vue經常使用操做及學習筆記(路由跳轉及路由傳參篇)

路由跳轉 - 超連接方式跳轉

html:html

<div id="app">
    <h1>Hello App!</h1>
    <p>
        <!-- 使用 router-link 組件來導航. -->
        <!-- 經過傳入 `to` 屬性指定連接. -->
        <!-- <router-link> 默認會被渲染成一個 `<a>` 標籤 -->
        <router-link to="/foo">Go to Foo</router-link>
        <router-link to="/bar">Go to Bar</router-link> 
        <!-- 傳參 -->
        <router-link :to="routeObj">Go to Bar</router-link>
    </p>
    <!-- 路由出口 -->
    <!-- 路由匹配到的組件將渲染在這裏 -->
    <router-view></router-view>
</div>

<script>
export default {
  name: 'lb', // 問卷調查
  data () {
    return {
        routeObj:{
            path: '/foo',
            query: {
              data: 'lalala'
            }
        }
    }
  }
}
</script>

router.js:vue

import Vue from 'vue';
import vueRouter from 'vue-router';
Vue.use(vueRouter);
// 0. 若是使用模塊化機制編程,導入Vue和VueRouter,要調用 Vue.use(VueRouter)
 
// 1. 定義(路由)組件。
// 也能夠從其餘文件 import 進來
const Foo = { template: '<div>foo</div>' }
const Bar = { template: '<div>bar</div>' }
 
// 2. 定義路由
// 每一個路由應該映射一個組件。 其中"component" 能夠是
// 經過 Vue.extend() 建立的組件構造器,
// 或者,只是一個組件配置對象。
const routes = [
    { path: '/foo', component: Foo },
    { path: '/bar', component: Bar }
]
 
// 3. 建立 router 實例,而後傳 `routes` 配置
// 你還能夠傳別的配置參數, 不過先這麼簡單着吧。
const router = new VueRouter({
    routes // (縮寫)至關於 routes: routes
})
 
// 4. 建立和掛載根實例。
// 記得要經過 router 配置參數注入路由,
// 從而讓整個應用都有路由功能
const app = new Vue({
    router
}).$mount('#app')
 

export default router

路由跳轉 - 函數方法跳轉

this.$router.push();vue-router

query方式傳參和接收參數

//query方法傳值
this.$router.push({path : '/xxx', query : { data }})
//query方法取值
this.$route.query.data

注意:傳參是this.$router,接收參數是this.$route編程

params方式傳參和接收參數

//params方法傳值
this.$router.push({name : 'xxx', params : { data }})
//params取值
this.$route.params.data

注意:params傳參,push裏面只能是 name:'xxxx',不能是path:'/xxx'app

區別:直白的來講query至關於get請求,頁面跳轉的時候,能夠在地址欄看到請求參數,而params至關於post請求,參數不會再地址欄中顯示

拓展:this.$router 和this.$route有何區別?

1.$router爲VueRouter實例,想要導航到不一樣URL,則使用$router.push方法
2.$route爲當前router跳轉對象,裏面能夠獲取name、path、query、params等模塊化

注意: 使用query方式傳值刷新頁面後參數不會丟失,使用params方式傳值,參數會丟失,使用時須要權衡

相關文章
相關標籤/搜索