Vuejs高级之:路由综合实例

Posted 工云IT技术

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vuejs高级之:路由综合实例相关的知识,希望对你有一定的参考价值。


1Vuejs高级之:路由

8.1 官方路由

由于多个状态分散的跨越在许多组件和交互间各个角落,大型应用复杂度也经常逐渐增长。为了解决这个问题,Vue 提供 vuex: 我们有受到 Elm 启发的状态管理库。vuex 甚至集成到 vue-devtools,无需配置即可访问时光旅行。

原理如图:

8.2 安装

通过npm命令安装

npm install vue-router

8.3 基本使用

1、使用路由:在main.js中,需要明确安装路由功能

import Vue from 'vue'

import VueRouter from 'vue-router'

import App from './App.vue'

Vue.use(VueRouter)

2、定义组件,这里使用从其他文件import进来

import index from './components/index.vue'

import hello from './components/hello.vue'

3、定义路由

const routes = [

    { path: '/index', component: index },

    { path: '/hello', component: hello },

]

4、创建 router 实例,然后传 routes 配置

const router = new VueRouter({

  routes

})

5、创建和挂载根实例。通过 router 配置参数注入路由,从而让整个应用都有路由功能

const app = new Vue({

  el: '#app',

  router

  ...App

})

8.4 重定向 redirect

路由不仅仅能够关联Vue组件,也可以进行页面的重定向

const routes = [

    { path: '/', redirect: '/index'},     // 这样进/ 就会跳转到/index

    { path: '/index', component: index }

]

8.5 嵌套路由

实际应用界面,通常由多层嵌套的组件组合而成。

比如,我们 “首页”组件中,还嵌套着 “登录”和 “注册”组件,那么URL对应就是/home/login和/home/reg

const routes = [

             { path: '/', redirect: '/home' },

            {

                path: '/home',

                component: Home,

                children:[

                    { path: '/home/login', component: Login},

                    { path: '/home/reg', component: Reg}

                ]

            },

            { path: '/news', component: News}

        ]

8.6 懒加载

针对大型的复杂应用,我们会有一个疑问,这么多组件,加载不会造成页面响应速度变慢么,其实是有解决办法的,就是懒加载,即用到的时候,才加载或者延时加载,已达到友好的体验。

const routes = [

    { path: '/index', component: resolve => require(['./index.vue'], resolve) },

    { path: '/hello', component: resolve => require(['./hello.vue'], resolve) },

]

8.7 <router-link>

<!-- 字符串 -->

<router-link to="home">Home</router-link>

<!-- 渲染结果 -->

<a href="home">Home</a>

<!-- 使用 v-bind 的 JS 表达式 -->

<router-link v-bind:to="'home'">Home</router-link>

<!-- 不写 v-bind 也可以,就像绑定别的属性一样 -->

<router-link :to="'home'">Home</router-link>

<!-- 同上 -->

<router-link :to="{ path: 'home' }">Home</router-link>

<!-- 命名的路由 -->

<router-link :to="{ name: 'user', params: { userId: 123 }}">User</router-link>

<!-- 带查询参数,下面的结果为 /register?plan=private -->

<router-link :to="{ path: 'register', query: { plan: 'private' }}">Register</router-link>

8.8 路由信息对象

一个路由route对象,内部所含的对象和属性如下:

1.$route.path

字符串,对应当前路由的路径,总是解析为绝对路径,如 "/foo/bar"。

2.$route.params

一个 key/value 对象,包含了 动态片段 和 全匹配片段,如果没有路由参数,就是一个空对象。

3.$route.query

一个 key/value 对象,表示 URL 查询参数。例如,对于路径 /foo?user=1,则有 $route.query.user == 1,如果没有查询参数,则是个空对象。

4.$route.hash

当前路由的 hash 值 (不带 #) ,如果没有 hash 值,则为空字符串。

5.$route.fullPath

完成解析后的 URL,包含查询参数和 hash 的完整路径。

6.$route.matched

一个数组,包含当前路由的所有嵌套路径片段的 路由记录 。路由记录就是 routes 配置数组中的对象副本(还有在 children 数组)。

2Vuejs高级之: 实战项目

9.1 前言

我们将会选择使用一些vue周边的库vue-cli, vue-router,vue-resource,vuex,以达到:

使用vue-cli创建项目

使用vue-router实现单页路由

用vuex管理我们的数据流

使用vue-resource请求我们的node服务端

使用.vue文件进行组件化的开发

完成父子组件之间的数据通讯

9.2 demo预期

最终,我们会构建出一个小的demo,如图:


Vuejs高级之:路由、综合实例

9.3 安装

我们将会使用webpack去为我们的模块打包,预处理,热加载。如果你对webpack不熟悉,它就是可以帮助我们把多个js文件打包为1个入口文件,并且可以达到按需加载。这就意味着,我们不用担心由于使用太多的组件,导致了过多的HTTP请求,这是非常有益于产品体验的。但我们并不只是为了这个而使用webpack,我们需要用webpack去编译.vue文件,如果没有使用一个loader去转换我们.vue文件里的style、js和html,那么浏览器就无法识别。

模块热加载是webpack的一个非常碉堡的特性,将会为我们的单页应用带来极大的便利。通常来说,当我们修改了代码刷新页面,那应用里的所有状态就都没有了。这对于开发一个单页应用来说是非常痛苦的,因为需要重新在跑一遍流程。如果有模块热加载,当你修改了代码,你的代码会直接修改,页面并不会刷新,所以状态也会被保留。

Vue也为我们提供了CSS预处理,所以我们可以选择在.vue文件里写LESS或者SASS去代替原生CSS。

我们过去通常需要使用npm下载一堆的依赖,但是现在我们可以选择Vue-cli。这是一个vue生态系统中一个伟大创举。这意味着我们不需要手动构建我们的项目,而它就可以很快地为我们生成。

9.3.1 使用vue-cli构建工程

首先,安装vue-cli。(确保你有node和npm,具体参考上一章的开发环境搭建)

npm i -g vue-cli

然后创建一个webpack项目并且下载依赖

vue init webpack vue-tutorial

命令如图:

Vuejs高级之:路由、综合实例

9.3.2 安装依赖包

cd vue-demo

npm i

接着使用 npm run dev 在热加载中运行我们的应用

这一行命令代表着它会去找到package.json的scripts对象,执行node bulid/dev-server.js。在这文件里,配置了Webpack,会让它去编译项目文件,并且运行服务器,我们在localhost:8080即可查看我们的应用。

这些都准备好后,我们需要为我们的路由、XHR请求、数据管理下载三个库,我们可以从vue的官网中找到他们。另外我们使用bootstrap作为我的UI库

npm i vue-resource vue-router vuex bootstrap --save

9.4 初始化

查看我们的应用文件,我们可以在src目录下找到App.vue和main.js。main.js将会作为我们应用的入口文件而App.vue会作为我们应用的初始化组件。先让我们来完善下main.js

import Vue from 'vue'

import VueRouter from 'vue-router'

import VueResource from 'vue-resource'

import App from './App'

import Home from './components/Home'

import 'bootstrap/dist/css/bootstrap.css'

Vue.use(VueRouter)

Vue.use(VueResource)

const routes = [{

  path : '/',

  component : Home

},{

  path : '/home',

  component : Home

}];

const router = new VueRouter({

  routes

});

/* eslint-disable no-new */

// 实例化我们的Vue

var app = new Vue({

  el: '#app',

  router,

  ...App,

});

可以发现我们在main.js里使用了两个组件App.vue和Home.vue,稍后让我们具体实现它们的内容。

而我们的index.html只需要保留<div id="app"></div>即可,我们的Vue在实例化时设置了el : '#app' 所以会替换这标签,为我们App组件的内容

//index.html

<div id="app"></div>

我们的初始化就到这结束了,接下来让我们开始创建组件。

9.5.1 创建组件-app结构

<template>

  <div id="wrapper">

    <nav class="navbar navbar-default">

      <div class="container">

        <a class="navbar-brand" href="#">

          <i class="glyphicon glyphicon-time"></i>

          计划板

        </a>

        <ul class="nav navbar-nav">

          <li><router-link to="/home">首页</router-link></li>

          <li><router-link to="/time-entries">计划列表</router-link></li>

        </ul>

      </div>

    </nav>

    <div class="container">

      <div class="col-sm-3">

       

      </div>

      <div class="col-sm-9">

 <router-view></router-view>

      </div>

    </div>

  </div>

</template>

9.5.2 创建组件-Home页搭建

// src/components/Home.vue

<template>

  <div class="jumbotron">

    <h1>任务追踪</h1>

    <p>

      <strong>

        <router-link to="/time-entries">创建一个任务</router-link>

      </strong>

    </p>

  </div>

</template>

搭建完成后,应该可以看到如下效果图:

Vuejs高级之:路由、综合实例

9.5.3 创建组件-侧边栏组件

我们首页左侧还有一块空白,我们需要它放下一个侧边栏去统计所有计划的总时间。

// src/App.vue

  //上面内容没有改动,只修改了红字标识的部分

  <div class="container">

    <div class="col-sm-3">

<sidebar></sidebar>

    </div>

    <div class="col-sm-9">

      <router-view></router-view>

    </div>

  </div>

  //...

<script>

  import Sidebar from './components/Sidebar.vue'

  export default {

    components: { 'sidebar': Sidebar },

  }

</script>

在左侧,我们通过嵌套的方式,又引入了一个子组件Sidebar.vue,接下来我们创建Sidebar.vue

9.5.3 创建组件-侧边栏组件

我们将App.vue中引入的Sidebar.vue创建出来:

// src/components/Sidebar.vue

<template>

  <div class="panel panel-default">

    <div class="panel-heading">

      <h1 class="text-center">已有时长</h1>

    </div>

    <div class="panel-body">

      <h1 class="text-center">{{ time }} 小时</h1>

    </div>

  </div>

</template>

<script>

  export default {

    computed: {

        time() {

          return this.$store.state.totalTime

        }

      }

  }

</script>

9.5.4 创建组件-计划列表组件Templete

整个App.vue上的内容已经完善,接下来可以去创建“创建计划列表组件”了

// src/components/TimeEntries.vue

<template>

  <div>

    <router-link v-if="$route.path !== '/time-entries/log-time'" to="/time-entries/log-time" class="btn btn-primary">创建</router-link>

    <div v-if="$route.path === '/time-entries/log-time'"><h3>创建</h3></div>

    <hr>

    <router-view></router-view>

    <div class="time-entries">

      <p v-if="!plans.length"><strong>还没有任何计划</strong></p>

      <div class="list-group">

        <a class="list-group-item" v-for="(plan,index) in plans">

          <div class="row">

            <div class="col-sm-2 user-details">

              <img :src="plan.avatar" class="avatar img-circle img-responsive" />

              <p class="text-center"> <strong> {{ plan.name }}</strong></p>

            </div>

            <div class="col-sm-2 text-center time-block">

              <h3 class="list-group-item-text total-time">

                <i class="glyphicon glyphicon-time"></i>{{ plan.totalTime }}

              </h3>

              <p class="label label-primary text-center">

                <i class="glyphicon glyphicon-calendar"></i>{{ plan.date }}

              </p>

            </div>

            <div class="col-sm-7 comment-section"><p>{{ plan.comment }}</p></div>

            <div class="col-sm-1">

              <button class="btn btn-xs btn-danger delete-button" @click="deletePlan(index)">X</button>

            </div>

          </div>

        </a>

      </div>

    </div>

  </div>

</template>

9.5.4 创建组件-计划列表组件Template

上面我们创建了Template部分,有几点需要说明:

v-for循环,注意参数顺序为(item,index) in items

`:src`属性,这个是vue的属性绑定简写`v-bind`可以缩写为`:`

§比如a标签的`href`可以写为`:href`

§并且在vue的指令里就一定不要写插值表达式了(`:src={{xx}}`),vue自己会去解析

9.5.5 创建组件-计划列表组件Script

上面完成了Template,我们都知道,一个组件是由三部分组成,Template必不可少,如果需要逻辑处理呢,则需要来写Script部分

// src/components/TimeEntries.vue

<script>

    export default {

        name : 'TimeEntries',

        computed : {

          plans () {

            // 从store中取出数据

            return this.$store.state.list

          }

        },

        methods : {

          deletePlan(idx) {

            // 稍后再来说这里的方法

            // 减去总时间

            this.$store.dispatch('decTotalTime',

this.plans[idx].totalTime)

            // 删除该计划

            this.$store.dispatch('deletePlan',idx)

          }

        }

    }

</script>

9.5.6 创建组件-计划列表组件Style

Template和Script部分写完,基本上组件就可以运行了,但是我们需要对自定义的样式,就好像买了房子,不装修一样,必要的样式也是不可或缺的部分:

// src/components/TimeEntries.vue

<style>

  .avatar {

    height: 75px;

    margin: 0 auto;

    margin-top: 10px;

    margin-bottom: 10px;

  }

  .user-details {

    background-color: #f5f5f5;

    border-right: 1px solid #ddd;

    margin: -10px 0;

  }

  .time-block {

    padding: 10px;

  }

  .comment-section {

    padding: 20px;

  }

</style>

9.5.7 创建组件-创建任务组件Template

有了任务列表,势必需要添加任务的组件,不然列表数据岂不是一直都是空的,由此,我们需要继续创建“创建任务组件”

// src/components/LogTime.vue

<template>

  <div class="form-horizontal">

    <div class="form-group">

      <div class="col-sm-6">

        <label>日期</label>

        <input  type="date"  class="form-control" v-model="date" placeholder="Date"  />

      </div>

      <div class="col-sm-6">

        <label>时间</label>

        <input type="number" class="form-control" v-model="totalTime" placeholder="Hours"  />

      </div>

    </div>

    <div class="form-group">

      <div class="col-sm-12">

        <label>备注</label>

        <input ype="text" class="form-control" v-model="comment" placeholder="Comment" />

      </div>

    </div>

    <button class="btn btn-primary" @click="save()">保存</button>

    <router-link to="/time-entries" class="btn btn-danger">取消</router-link>

    <hr>

  </div>

</template>

9.5.7 创建组件-创建任务组件Script

同计划组件一样,写完Template,继续来写Script:

<script>

  export default {

        name : 'LogTime',

        data() {

            return {

                date : '',

                totalTime : '',

                comment : ''

            }

        },

        methods:{

          save() {

            const plan = {

              name : '二哲',

              image : 'https://sfault-avatar.b0.upaiyun.com/888/223/888223038-5646dbc28d530_huge256',

              date : this.date,

              totalTime : this.totalTime,

              comment : this.comment

            };

            this.$store.dispatch('savePlan', plan)

            this.$store.dispatch('addTotalTime', this.totalTime)

            this.$router.go(-1)

          }

        }

    }

</script>

9.5.8 子组件的路由配置

LogTime属于我们TimeEntries组件的一个子路由,所以我们依旧需要配置下我们的路由,并且利用webpack让它懒加载,减少我们首屏加载的流量:

注意://...表示的是上下代码省略,而不是这个main.js就简化成这样了

// src/main.js

//...

const routes = [{

  path : '/',

  component : Home

},{

  path : '/home',

  component : Home

},{

  path : '/time-entries',

  component : TimeEntries,

  children : [{

    path : 'log-time',

    // 懒加载

    component : resolve => require(['./components/LogTime.vue'],resolve),

  }]

}];

//...

9.6 数据共享

我们的数据在各个路由页面是共享的,所以我们需要把数据存在store里

§我们在src下创建个目录为store

§在store下分别创建4个js文件actions.js,index.js,mutation-types.js,mutations.js

这其实就是一个发布订阅的模式:

mutation-types 记录我们所有的事件名

mutations 注册我们各种数据变化的方法

actions 则可以编写异步的逻辑或者是一些逻辑,再去commit我们的事件

最后由index页面做整合封装

9.7.1 Vuex数据通信-mutation-types

接着我们看mutation-types.js,既然想很明确了解数据,那就应该有什么样的操作看起

// src/store/mutation-types.js

// 增加总时间或者减少总时间

export const ADD_TOTAL_TIME = 'ADD_TOTAL_TIME';

export const DEC_TOTAL_TIME = 'DEC_TOTAL_TIME';

// 新增和删除一条计划

export const SAVE_PLAN = 'SAVE_PLAN';

export const DELETE_PLAN = 'DELETE_PLAN';

PS:在这有个技巧就是,在mutations里都是用大写下划线连接,而我们的actions里都用小写驼峰对应。

9.7.2 Vuex数据通信-mutations

接下来在mutations中注册我们各种数据变化的方法

// src/store/mutations.js

import * as types from './mutation-types'

export default {

    // 增加总时间

  [types.ADD_TOTAL_TIME] (state, time) {

    state.totalTime = state.totalTime + time

  },

  // 减少总时间

  [types.DEC_TOTAL_TIME] (state, time) {

    state.totalTime = state.totalTime - time

  },

  // 新增计划

  [types.SAVE_PLAN] (state, plan) {

    // 设置默认值,未来我们可以做登入直接读取昵称和头像

    const avatar = 'https://sfault-avatar.b0.upaiyun.com/147/223/147223148-573297d0913c5_huge256';

   

    state.list.push(

      Object.assign({ name: '二哲', avatar: avatar }, plan)

    )

  },

  // 删除某计划

  [types.DELETE_PLAN] (state, idx) {

    state.list.splice(idx, 1);

  }

};

9.7.3 Vuex数据通信-actions

最后结合actions来看:

actions其实就是去触发事件和传入参数

// src/store/actions.js

import * as types from './mutation-types'

export default {

  addTotalTime({ commit }, time) {

    commit(types.ADD_TOTAL_TIME, time)

  },

  decTotalTime({ commit }, time) {

    commit(types.DEC_TOTAL_TIME, time)

  },

  savePlan({ commit }, plan) {

    commit(types.SAVE_PLAN, plan);

  },

  deletePlan({ commit }, plan) {

    commit(types.DELETE_PLAN, plan)

  }

};

9.7.4 Vuex数据通信-index

仔细思考一下,我们需要两个全局数据,一个为所有计划的总时间,一个是计划列表的数组。src/store/index.js 没啥太多可介绍的,其实就是传入我们的state,mutations,actions来初始化我们的Store。

// src/store/index.js 完整代码

import Vue from 'vue'

import Vuex from 'vuex'

import mutations from './mutations'

import actions from './actions'

Vue.use(Vuex);

const state = {

  totalTime: 0,

  list: []

};

export default new Vuex.Store({

  state,

  mutations,

  actions

})

9.8 整合store

这个stroe完成后,为了能在app中调用它,需要在main.js中传入

// src/store/main.js

import store from './store'

// ...

var app = new Vue({

  el: '#app',

  router,

  store,

  ...App,

});

9.9 开始体验下你自己的任务计划板吧!

写到这里,我们的程序就已经完成了

由总体App.vue,中间嵌套了Sidebar和路由<router-view></router-view>,通过路由控制Home和TimeEntries的显示

TimeEntries中又嵌套了子组件logTime,以及配置了延时加载

组件直接跳转通过vue-router,数据通信通过vuex,界面又同时使用了bootstrap,数据存储使用了store

基本上Vue的所有高级功能通过本实例全部展现了出来

接下来,通过node.js来运行 npm run dev 看看你的成果吧


本站代码下载方法:


以上是关于Vuejs高级之:路由综合实例的主要内容,如果未能解决你的问题,请参考以下文章

综合实验——高级网络应用检测

sed ‘N,P,D,lable循环’高级应用综合实例

vue路由高级语法糖

JSON之JS高级程序设计笔记

大型公司网络之——OSPF高级配置(实验)

Eclipse插件开发 学习笔记 PDF 第一篇到第四篇 免分下载 开发基础 核心技术 高级进阶 综合实例