Vue知识点

Vue路由(Vue-router)

2020-11-23  本文已影响0人  接下来的冬天

一、什么是路由?

二、什么是前端渲染,什么是后端渲染(服务端渲染)?

(1)后端路由

(2)前后端分离阶段

(3)单页面富应用阶段

(4)前端路由

三、vue-router安装和配置

安装:

npm install vue-router --save

const router = new VueRouter({
  routes: [] // 路由的映射关系
})

然后我们在main.js中挂载一下router就可以搭好路由的基本配置了,下面我们就可以在routes中设置路由的映射关系了。

const routes = [
  {
    path: '/home',
    component: null
  },
  {
     path: '/about',
     component: null
  }
]

使用vue-router的步骤

1.创建路由组件
2.配置路由映射:组件和路径的映射关系
3.使用路由:通过<router-link>和<router-view>

路由的默认值改为history模式

const router = new VueRouter({
  routes: [], // 路由的映射关系
  mode: 'history'  // 配置这个属性以后,就可以实现把默认的hash模式改为history模式。
})

router-link补充

const router = new VueRouter({
  routes: [], // 路由的映射关系
  mode: 'history',
  linkActiveClass: 'active'
})

通过代码跳转路由

四、动态路由

const routes = [
  {
    path: '/home',
    component: null
  },
  {
     path: '/about',
     component: null
  },
  {
    path: '/user/:id',// 这里的id就是要配置的动态路由
    component: null
  }
]

this.$route.params.id通过这种方式我们就可以拿到url中的参数值。

五、路由的懒加载

const Home = () => import('../components/Home');
const routes = [
    {
        path: '/home',
        component:  Home
    }
]

六、路由的嵌套

实现嵌套路由的两个步骤

1.创建对应的子组件,并且在路由映射中配置对应的子路由。
2.在组件内部使用<router-view>标签。

const Home = () => import('../components/Home');
const HomeNews = () => import('../components/HomeNews');
const HomeMessage = () => import('../components/HomeMessage ');
const routes = [
    {
        path: '/home',
        component:  Home,
        children: [
            {
                path: '',
                redirect: 'news'// 默认显示新闻页
            },
            {
                path: 'news',
                component: HomeNews
            },
            {
                 path: 'message',
                 component: HomeMessage
            }
        ]
    }
]

七、路由参数传递

const routes = [
  {
    path: '/profile:id',
    component: 'Profile'
  }
]

页面中取出某个参数:$route.params.id
2.query类型:
(1)配置路由格式:/router,也就是普通的配置
(2)传递的方式:对象中使用query的key作为传递方式
(3)传递后的路径:/router?id=123

<router-link :to={ path: '/router', query: { name: 'aaa', age: 18 }}></router-link>

页面中取出某个参数:$route.query.name
3.通过点击事件实现路由传递参数

methods: {
  // params方式
  userClick () {
    this.$router.push('/user/' + this.userId)
  },
// query 方式
  proFileClick () {
    this.$router.push({
      path:'/profile',
      query: {
        name: 'kobe',
        age: 18
      }
    })
  },
}

4.$route$router的区别

八、vue-router的全局导航守卫

  1. 全局守卫
router.beforeEach((to, from, next) => {
  // beforeEach叫做前置守卫(hook)
  // meta 元数据(描述数据的数据)
  document.title = to.matched[0].meta.title;
  next('/login')
  // next可用于判断是否登录,没有登录直接跳转到登录页面
})

导航钩子的三个参数解析:

补充:

router.afterEach((to, from) =>  {
  console.log('aaa');
})
  1. 路由独享守卫
  2. 组件内守卫

九、keep-alive以及其他问题

<keep-alive>
  <roouter-view />
</keep-alive>
<keep-alive exclude='Profile,User'>
// 上面两个组件之间最好不要加空格,会出现问题
  <roouter-view />
</keep-alive>

activated/deactivated只有在页面使用了keep-alive保持状态的时候才会起作用

注:

const router = new VueRouter({
  routes,
  mode: 'histroy', 
  // 这里使用history模式,代替hash模式,这样的话在路径中就不会出现类似hash的路径格式。
})
上一篇 下一篇

猜你喜欢

热点阅读