vue學習十四(巢狀路由、命名路由、命名檢視、重定向)

金丙坤發表於2018-09-30

巢狀路由

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>

<body>

    <div id="app">
        <router-link to="/green" tag="li">green</router-link>
        <router-link to="/fruit" tag="li">fruit</router-link>
        <router-view></router-view>
    </div>

    <template id="green">
        <div>
            蔬菜
            <router-link to="/green/organic">有機</router-link>
            <router-link to="/green/inorganic">無機</router-link>
            <router-view></router-view>
        </div>
    </template>

    <template id="fruit">
        <div>水果
            <router-link to="/fruit/sweet">甜的</router-link>
            <router-link to="/fruit/acid">酸的</router-link>
            <router-view></router-view>
        </div>
    </template>
    
</body>


<script src="https://cdn.jsdelivr.net/npm/vue@2.5.17/dist/vue.js"></script>
<script src="https://unpkg.com/vue-router@3.0.1/dist/vue-router.js"></script>
<script>
    //父路由 有蔬菜,水果,蔬菜裡面有有機蔬菜,無機蔬菜 ,水果裡面有甜的酸的
    let green = { template: '#green' }
    let organic = { template: "<div>有機蔬菜organic</div>" }
    let inorganic = { template: "<div>無機蔬菜inorganic</div>" }
    let fruit = { template: '#fruit' }
    let sweet = { template: "<div>甜的</div>" }
    let acid = { template: "<div>酸的</div>" }
    //路由路徑對映表
    let routes = [
        //路由預設去的第一個元件
        {
            path: '',
            component: green
        },
        {
            path: "/green",
            component: green,
            children: [
                {
                    path: "",
                    component: organic
                },
                {
                    path: "organic",
                    component: organic
                },
                {
                    path: "inorganic",
                    component: inorganic
                }
            ]
        },
        {
            path: "/fruit",
            component: fruit,
            children: [
                {
                    path: "",
                    component: sweet
                },
                {
                    path: "sweet",
                    component: sweet
                },
                {
                    path: "acid",
                    component: acid
                }
            ]

        },
        //所有沒有找到時候,去地址/green的元件
        {
            path: "*",
            redirect: '/green'
        }

    ]
    //例項化一個路由
    let router = new VueRouter({
        routes
    })
    let vm = new Vue({
        el: "#app",
        data: {
        },
        router
    })
</script>

</html>

file:///Users/zhiliao/zhiliao/vue/index_test.html#/

green
fruit
蔬菜 有機 無機

file:///Users/zhiliao/zhiliao/vue/index_test.html#/green
file:///Users/zhiliao/zhiliao/vue/index_test.html#/green/organic

green
fruit
蔬菜 有機 無機
有機蔬菜organic

file:///Users/zhiliao/zhiliao/vue/index_test.html#/green/inorganic

green
fruit
蔬菜 有機 無機
無機蔬菜inorganic

file:///Users/zhiliao/zhiliao/vue/index_test.html#/fruit
file:///Users/zhiliao/zhiliao/vue/index_test.html#/fruit/sweet

green
fruit
水果 甜的 酸的
甜的

file:///Users/zhiliao/zhiliao/vue/index_test.html#/fruit/acid

green
fruit
水果 甜的 酸的
酸的

命名路由

有時候,通過一個名稱來標識一個路由顯得更方便一些,特別是在連結一個路由,或者是執行一些跳轉的時候。你可以在建立 Router 例項的時候,在 routes 配置中給某個路由設定名稱。


<body>
    <div id="box">
        <router-link :to="{ name: 'foo'}">One</router-link>
        <router-link :to="{ name: 'bar'}">Two</router-link>
        <router-view></router-view>
    </div>

    <script>
        //1、定義 (路由) 模版元件
        const Foo = { template: '<div>第一個router</div>' }
        const Bar = { template: '<div>第二個router</div>' }

        //2、定義路由
        var routes = [
            {
                path: "/one",
                name: 'foo',
                component: Foo
            },
            {
                path: "/two",
                name: 'bar',
                component: Bar
            },
        ];
        // 3、建立 router 例項
        var router = new VueRouter({
            routes
        });
        // 4、建立和掛載根例項
        const app = new Vue({
            router
        }).$mount('#box')
    </script>
</body>

效果圖如下:

One Two
第一個router

命名檢視

有時候想同時 (同級) 展示多個檢視,而不是巢狀展示,例如建立一個佈局,有 sidebar (側導航) 和 main (主內容) 兩個檢視,這個時候命名檢視就派上用場了。你可以在介面中擁有多個單獨命名的檢視,而不是隻有一個單獨的出口。如果 router-view 沒有設定名字,那麼預設為 default。

<router-view class="view one"></router-view>
<router-view class="view two" name="a"></router-view>
<router-view class="view three" name="b"></router-view>

我們來看一個例子:


<body>
    <div id="box">
        <router-link to="/one">One</router-link>
        <router-view name="a_view"></router-view>
    </div>

    <script>
        //1、定義 (路由) 模版元件
        const Foo = { template: '<div>第一個router</div>' }

        //2、定義路由
        var routes = [
            {
                path: "/one",
                // name: 'foo',
                components: {
                    a_view: Foo,
                }
            }
        ];
        // 3、建立 router 例項
        var router = new VueRouter({
            routes
        });
        // 4、建立和掛載根例項
        const app = new Vue({
            router
        }).$mount('#box')
    </script>
</body>

重定向

重定向也是通過 routes 配置來完成,下面例子是從 /a 重定向到 /b:

const router = new VueRouter({
  routes: [
    { path: '/a', redirect: '/b' }
  ]
})

重定向的目標也可以是一個命名的路由:

const router = new VueRouter({
  routes: [
    { path: '/a', redirect: { name: 'foo' }}
  ]
})

甚至是一個方法,動態返回重定向目標:

const router = new VueRouter({
  routes: [
    { path: '/a', redirect: to => {
      // 方法接收 目標路由 作為引數
      // return 重定向的 字串路徑/路徑物件
    }}
  ]
})

我們來看一個例子:


<body>


    <div id="box">
        <router-link to="/one">One</router-link>
        <router-link to="/two">Two</router-link>
        <router-view></router-view>
    </div>

    <!--定義模版-->
    <template id="Foo">
        <div>
            第一個router
        </div>
    </template>
    <template id="Bar">
        <div>
            第二個router
        </div>
    </template>

    <script>
        //1、定義 (路由) 模版元件

        //2、定義路由
        var routes = [
            {
                path: '/oneone', redirect: '/one' 
            },
            {
                path: "/one",
                
                component: { template: "#Foo" }
            },
            {
                path: "/two",
                component: { template: "#Bar" }
            },
        ];
        // 3、建立 router 例項
        var router = new VueRouter({
            routes
        });
        // 4、建立和掛載根例項
        const app = new Vue({
            router
        }).$mount('#box')

    </script>

</body>

相關文章