路由 路由的傳參 路由的嵌套 axios

路由:vue-router 帶三方工具庫
創建單頁面應用 spa (single page application)
通過不同的URL訪問不同的頁面
下載:
npm install vue
npm install vue-router

1.制作一個簡單的路由

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
/*
.router-link-active{
text-decoration: none;
background: orange;
color:black;
}
*/
.active{
text-decoration: none;
background: orange;
color:black;
}
</style>
</head>
<body>
<div class="itany">

<router-link to='/index'>首頁</router-link>
<router-link to='/about'>詳情頁</router-link>

<router-view></router-view>
</div>
<script src="vue.js"></script>
<script src="vue-router.js"></script>
<script>
// 2.創建組件
var Index={
template:<h1>我是首頁</h1>
}
var About={
template:<h1>我是詳情頁</h1>
}
// 3.配置路由
const routes=[
{path:'/',component:Index},
{path:'/index',component:Index},
{path:'/about',component:About}
]
// 4.創建一個路由實例
const router=new VueRouter({
routes:routes,
linkActiveClass:'active'

})

// 5.把路由實例掛載到vue實例上
new Vue({
el:'.itany',
router:router
})
</script>
</body>
</html>



注釋:點擊之后可跳轉,并出現自己所設置的樣式
2.路由的傳參:
查詢字符串:
/user/regist?uname=jack&&upwd=123
接收:{{
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>路由的傳參</title>
</head>
<body>
   <div id="app">
       <router-link to="/index">首頁</router-link>
       <router-link to="/about">用戶頁</router-link>
       <router-view></router-view>
 </div>
<script src="vue.js"></script>
<script src="vue-router.js"></script>
<script>
//        2.創建組件
    var Index={
        template:`
        <h1>這是首頁</h1>
    `
    }
    var About={
        template:`
            <div>
                <h1>這是用戶頁</h1>
                <ul>
                    <li>
                        <router-link to="/about/user?uname=jack&upwd=123">注冊</router-link>
                    </li>
                    <li>
                        <router-link to='/about/login/rose/456'>登錄</router-link>
                    </li>
                </ul>
                <router-view></router-view>
            </div>
        `
    }
    var User={
        template:`
        <div>
            <h3>我是注冊頁</h3>
            <a href="#">{{$route.query}}</a>
            <ul>
            <li>{{$route.query.uname}}</li>
            <li>{{$route.query.upwd}}</li>
            </ul>
        </div>
        `
    }
    var Login={
        template:`
        <div>
            <h3>我是登錄頁</h3>
            <a href="#">{{$route.params}}</a>
            <ul>
                <li>{{$route.params.userName}}</li>
                <li>{{$route.params.password}}</li>
            </ul>
        </div>
        `
    }
//        3、配置路由
    const routes=[
       {path:'/',component:Index}, {path:'/index',component:Index},
        {
            path:'/about',
            component:About,

        children:[
            {path:'user',component:User},
            {path:'login/:userName/:password',component:Login},
        ]
        },
    ]
//        4.創建路由實例
    const router=new VueRouter({
        routes:routes
    })
//        5.
    new Vue({
        el:'#app',
        router:router//注冊路由
    })
    </script>
</body>
</html>

3.路由的嵌套

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>路由的嵌套</title>
</head>
<body>
<div id="app">
<router-link to="/index">首頁</router-link>
<router-link to="/about">用戶頁</router-link>
<router-view></router-view>
</div>
<script src="vue.js"></script>
<script src="vue-router.js"></script>
<script>
// 2.創建組件
var Index={
template:<h1>這是首頁</h1>
}
var About={
template:<div> <h1>這是用戶頁</h1> <ul> <li> <router-link to="/about/user">注冊</router-link> </li> <li> <router-link to="/about/login">登錄</router-link> </li> </ul> <router-view></router-view> </div>
}
var User={
template:<h3>我是注冊頁</h3>
}
var Login={
template:<h3>我是登錄頁</h3>
}
// 3、配置路由
const routes=[
{path:'/',component:Index}, {path:'/index',component:Index},
{
path:'/about',
component:About,

    children:[
        {path:'user',component:User},
        {path:'login',component:Login},
    ]
    },
]

// 4.創建路由實例
const router=new VueRouter({
routes:routes
})
// 5.
new Vue({
el:'#app',
router:router//注冊路由
})
</script>
</body>
</html>

4.axios
vue中的ajax 插件
下載axios:
npm install axios
1.0 vue-resource
2.0 axios
安裝http-server
npm install http-server -g
使用http-server 開啟一個服務器
例:
html:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style>
/*
        .router-link-active{
            text-decoration: none;
            background: orange;
            color:black;
        }
*/
    .active{
        text-decoration: none;
        background: orange;
        color:black;
    }
</style>
</head>
<body>
   <div class="itany">
<!--      1.-->
   <router-link to='/index'>首頁</router-link>
   <router-link to='/about'>詳情頁</router-link>
<!--       盛放導航內容-->
  <router-view></router-view>
 </div>
<script src="vue.js"></script>
<script src="vue-router.js"></script>
<script src="axios.js"></script>
<script>
//        2.創建組件
    var Index={
        template:`
        <h1>我是首頁</h1>
    `
    }
    var About={
        template:`
        <div>
          <h1>我是詳情頁</h1>
           <table border=1 cellspacing=0>
            <thead>
                <tr>
                   <td>編號</td>
                   <td>品名</td>
                   <td>單價</td>
                   <td>數量</td>
                   <td>小計</td>
                </tr>
            </thead>
            <tbody>
               <tr v-for="value in fruList">
                   <td>{{value.num}}</td>
                   <td>{{value.pname}}</td>
                   <td>{{value.price}}</td>
                   <td>{{value.count}}</td>
                   <td>{{value.sub}}</td>
               </tr>
            </tbody>
           </table>
         </div>
    `,
        data:function(){
            return{
                fruList:null
            }
        },
        mounted:function(){
            var self=this;
            axios({
                method:'get',//發送數據的方式
                url:'fruit.json'
            }).then(function(resp){
                console.log(resp.data)
                self.fruList=resp.data
            }).catch(function(err){//請求失敗
                console.log(err)
            })
        }
    }
//        3.配置路由
    const routes=[
        {path:'/',component:Index},
        {path:'/index',component:Index},
        {path:'/about',component:About}
    ]
//        4.創建一個路由實例
    const router=new VueRouter({
        routes:routes,
        linkActiveClass:'active'

    })
//        5.把路由實例掛載到vue實例上
    new Vue({
        el:'.itany',
        router:router
    })
    </script>
</body>
</html> 

json:

[
    {
    "num":1,
    "pname":"apple",
    "price":3,
    "count":4,
    "sub":12
},
 {
    "num":2,
    "pname":"pear",
    "price":4,
    "count":5,
    "sub":20
},
 {
    "num":3,
    "pname":"orange",
    "price":5,
    "count":6,
    "sub":30
}
]
最后編輯于
?著作權歸作者所有,轉載或內容合作請聯系作者
平臺聲明:文章內容(如有圖片或視頻亦包括在內)由作者上傳并發布,文章內容僅代表作者本人觀點,簡書系信息發布平臺,僅提供信息存儲服務。