vue-router笔记

什么是前端路由?

路由是根据不同的url地址展示不同的内容或页面

前端路由大致可分为4类

  1. 动态路由匹配
  2. 嵌套路由
  3. 编程式路由
  4. 命名路由和命名视图
  1. 动态路由匹配

    如: /goods/:goodsId 动态路由,必须要输入goods开始,后面加一个动态的数字或字符串

    // router/index.js文件
    export default new Router({
      mode: 'history', /* 指定路由模式, history模式在url中是没有#号的,只有hash模式才有 */
      routes: [
        {
          path: '/goods/:goodsId',   /* 动态路由模式 */
          name: 'Goods',
          component: Goods
        }
      ]
    })
    
    // 访问时可以输入  localhost:8080/goods/156
    
    <!-- GoodsList.vue文件 -->
    <template>
      <div>
        <p>{{ lists }}</p>
        <p>{{ lists }}</p>
        <p>{{ lists }}</p>
        <p>id = {{ $route.params.goodsId }}</p>  <!--可以拿到动态的id-->
      </div>
    </template>
    <script>
    export default {
      data () {
        return {
          lists: '我是商品列表'
        }
      }
    }
    </script>
    <style></style>
    

  2. 嵌套路由

    嵌套路由就是在一个页面中有多个路由链接,可以切换到不同的页面或内容而无需刷新(路由嵌路由).

    下面的案例中在商品列表中嵌套了两个子路由

    1. 通过 http://localhost:8080/goods/image访问图片
    2. 通过 http://localhost:8080/goods/title访问标题
    <!-- GoodsList.vue -->
    <template>
      <div>
        <p>{{ lists }}</p>
        <!-- to到达的地址一定要写绝对地址,包括上一级goods地址 -->
        <router-link to="/goods/image">图片</router-link>
        <router-link to="/goods/title">标题</router-link>
        <div>
          <router-view></router-view>
        </div>
      </div>
    </template>
    <script>
    export default {
      data () {
        return {
          lists: '商品列表'
        }
      }
    }
    </script>
    <style></style>
    
    <!-- Image.vue -->
    <template>
      <div>
        <p>{{ img }}</p>
      </div>
    </template>
    <script>
    export default {
      data () {
        return {
          img: '我是商品图片'
        }
      }
    }
    </script>
    <style></style>
    
    <!-- Title.vue -->
    <template>
      <div>
        <p>{{ title }}</p>
      </div>
    </template>
    <script>
    export default {
      data () {
        return {
          title: '我是标题标题'
        }
      }
    }
    </script>
    <style></style>
    
    <!-- /router/index.js文件 -->
    import Vue from 'vue'
    import Router from 'vue-router'
    import Goods from '@/views/GoodsList'
    import Img from '@/views/Image'
    import Tit from '@/views/Title'
    
    // 如果在一个模块化工程中使用vue-router,必须要通过 Vue.use() 明确地安装路由功能
    Vue.use(Router)
    
    export default new Router({
      mode: 'hash',  /*有#号, 默认就是这种方式*/
      routes: [
        {
          path: '/goods',
          name: 'Goods',
          component: Goods,
          
          /**
          *  1.使用children属性指定子路由
          *  2.在children里面的path中不能出现绝对路径符合/
          *  3.{ path: '/title', component: Tit }中 path 的值多了斜杠,是错误的写法
          */
          children: [
            { path: 'image', name: Img, component: Img },
            { path: 'title', component: Tit }
          ]
        }
      ]
    })
    

  3. 编程式路由

    通过js来实现页面的跳转,目前有3种方法可以实现跳转

    $router.push.('name');
    $router.push.({path:'name'});
    $router.push.({path:'name?id=123'})或$router.push.({path:'name', query:{a:123}});
    

  4. 命名路由和命名视图

    给路由定义不同的名字,根据名字进行匹配

    给不同的router-view定义名字,通过名字进行对应组件的渲染

     <!-- App.vue -->
    <template>
      <div id="app">
        <img src="./assets/logo.png">
        <!-- 这个 router-view 是装载一级路由的 -->
        <!-- 该方式很少使用,相当于将该组件划分为三部分,其实可以在GoodsList中通过样式划分区域 -->
        <router-view></router-view>
        <router-view name="tit"></router-view>
        <router-view name="img"></router-view>
      </div>
    </template>
    
    <script>
    export default {
      name: 'App'
    }
    </script>
    
    <style>
    #app {
      font-family: 'Avenir', Helvetica, Arial, sans-serif;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      text-align: center;
      color: #2c3e50;
      margin-top: 60px;
    }
    </style>
    
    <!-- /router/index.js文件 -->
    import Vue from 'vue'
    import Router from 'vue-router'
    import Goods from '@/views/GoodsList'
    import Img from '@/views/Image'
    import Tit from '@/views/Title'
    
    // 如果在一个模块化工程中使用vue-router,必须要通过 Vue.use() 明确地安装路由功能
    Vue.use(Router)
    
    export default new Router({
      mode: 'hash',  /*有#号, 默认就是这种方式*/
      routes: [
        {
          path: '/',
          name: 'GoodsList',
          components: {
            default: GoodsList,
            tit: Tit,
            img: Img
          }
        }
      ]
    })
    

什么是后台路由?

浏览器在地址栏中切换不同的url时,每次都向后台服务器发出请求,服务器响应请求,在后台拼接html文件传给前端显示, 返回不同的页面,意味着浏览器会刷新页面,网速慢的话说不定屏幕全白再有新内容。后端路由的另外一个极大的问题就是 前后端不分离。

路由的模式

路由的模式有两种

  • mode: 'history'
  • mode: 'hash' 会有一个#号出现在url中
// router/index.js文件中指定路由模式

import Vue from 'vue'
import Router from 'vue-router'
import List from '@/components/List'     /*@指的是src根目录*/

// 如果在一个模块化工程中使用vue-router,必须要通过 Vue.use() 明确地安装路由功能
Vue.use(Router)

export default new Router({
  mode: 'hash',    /* 指定路由模式 */
  routes: [
    {
      path: '/',
      name: 'lists',
      component: List
    }
  ]
})

history

js中有一个全局的对象history 记录着用户的操作历史,history.length 记录着已经操作了多少步

其实vue-router就是对history的一个封装

  1. 当前页面刷新 history.go(0)
  2. 前进一页 history.go(1)
  3. 后退一页 history.go(-1)
  4. 当前页面刷新 history.back(0)
  5. 后台一页 history.back(1)
  6. 改变页面 history.pushState(描述,标题,地址)

注意点1:在template中的错误

在任何的 .vue 文件,template模板中只能有一个根元素,如果出现两个或两个以上的根元素都会出现语法错误

  • 错误的写法

    <template>
      <!-- 出现两个根元素会有语法错误 -->
      <p>使用双大括号渲染内容:{{message}} </p>
      <p>使用v-html指令渲染内容:<span v-html="message"></span></p>
    </template>
    <script>
      export default {
        data () {
          return {
            message: '<span style="color: green">我是span里面的内容</span>'
          }
        }
      }
    </script>
    <style>
    </style>
    

  • 正确的写法

    <template>
      <div id='test'>
        <p>使用双大括号渲染内容:{{message}} </p>
        <p>使用v-html指令渲染内容:<span v-html="message"></span></p>
      </div>
    </template>
    <script>
      export default {
        data () {
          return {
            message: '<span style="color: green">我是span里面的内容</span>'
          }
        }
      }
    </script>
    <style>
    </style>
    

注意点2:引入组件/注册组件/使用组件

<!-- App.vue是应用程序页面入口 -->
<template>
  <div id="app">
    <router-view/>
    <!-- 3.使用组件 --> 
    <Counter></Counter>
  </div>
</template>

<script>
// 1.引入Counter.vue组件
import Counter from './components/Counter.vue';
export default {
  name: 'App',
  components: {
      // 2.注册组件
      Counter
  }
}
</script>

<style>
  #app {
    font-family: 'Avenir', Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-align: center;
    color: #2c3e50;
    margin-top: 20px;
  }
</style>

注意点3:路由中的传参区别

要注意一个问题。router跟route有所不同。router是路由对象,所有在js中使用的路由对象

route是单个路由对象。

  1. 动态路由的传参:通过 $route.params.goodrId 属性拿到值

    routes: [
        {
          path: '/goods/:goodsId',   /*动态路由可以通过$route.params.goodrId拿到goodsId的值*/
          name: 'Goods',
          component: Goods
        }
     ]
    

  2. 通过问号传参:

    // 在methods里面调用某个方法,方法里面调用页面跳转
    this.$router.push({path:'/car?goodrId=123'});
    
    // 使用 $route.query.goodsId可以拿到goodsId的值
    

vue注意事项

  1. Vue 不支持 IE8 及以下版本,因为 Vue 使用了 IE8 无法模拟的 ECMAScript 5 特性。但它支持所有兼容 ECMAScript 5 的浏览器
  2. 在引入vue时必须要在head标签里面引入,不能在body标签结束前引入,这样可以避免出现抖屏的现象。
  3. 使用 npm run build 命令可以生成成产环境的代码,即浏览器支持的代码,会在根目录中生成一个dist 文件夹,里面就是生成环境所使用的代码。

vue-router注意事项

在浏览器的地址栏中可以看到url有#号是怎么回事?

原因是在路由设置时有两种表示方式:第一种是history,第二种是hash。如果是使用hash表示法就会在url中显示#号。

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,163评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,301评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 162,089评论 0 352
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,093评论 1 292
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,110评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,079评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 40,005评论 3 417
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,840评论 0 273
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,278评论 1 310
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,497评论 2 332
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,667评论 1 348
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,394评论 5 343
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,980评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,628评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,796评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,649评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,548评论 2 352

推荐阅读更多精彩内容