当前位置:   article > 正文

Vue中使用require.context()自动引入组件和自动生成路由的方法介绍_vue自动引入组件

vue自动引入组件

目录

一、自动引入组件

1、语法

2、使用

2.1、在compoents文件下随便创建index.js文件

2.2、mian.js引入该js

二、自动生成路由

1、示例:

2、使用

2.1、在router文件下随便创建autoRouter.js文件

2.2、在router文件下index.js文件中引入autoRouter.js文件

三、总结


一、自动引入组件

我们项目开发中,经常需要import或者export各种模块,那么有没有什么办法可以简化这种引入或者导出操作呢?答案是肯定的,下面就为大家介绍一下require.context

require.context 是 webpack 提供的一个 API,用于创建 context,即一组具有相同上下文的模块。

使用 require.context 可以方便地加载多个模块,并且可以灵活地控制模块的加载顺序和依赖关系

以前我们都是通过import 方式引入组件

  1. import A from 'components/A'
  2. import B from 'components/B'
  3. import C from 'components/C'
  4. import D from 'components/D'

这样很蛋疼,因为每加一个组件,可能都要写这么一句,这样有规律的事,是否可以通过自动化完成?

require.context (需要vue-cli3+的版本)

1、语法
require.context(directory, useSubdirectories, regExp)
  1. directory: 要查找的文件路径
  2. useSubdirectories: 是否查找子目录
  3. regExp: 要匹配文件的正则
2、使用
2.1、在compoents文件下随便创建index.js文件
  1. const requireComponent = require.context('./', true, /\.vue$/)
  2. const install = (Vue) => {
  3. if (install.installed) return
  4. install.installed
  5. requireComponent.keys().forEach(element => {
  6. const config = requireComponent(element)
  7. if (config && config.default.name) {
  8. const componentName = config.default.name
  9. Vue.component(componentName, config.default || config)
  10. }
  11. });
  12. }
  13. if (typeof window !== 'undefined' && window.Vue) {
  14. install(window.Vue)
  15. }
  16. export default {
  17. install
  18. }
2.2、mian.js引入该js
  1. import install from './compoents'
  2. Vue.use(install)

3.3、这样在其他页面使用组件的时候,就不用再引用和注册了。直接使用就可以了。

比如直接这样使用就可以了,不用在import引入,不用components注册了。

  1. <template>
  2. <HelloWorld></HelloWorld>
  3. </template>

二、自动生成路由

实际开发中增加一个新的页面可能就要重新编写路由的问题,导致路由文件每次都要重新编辑,页面较多,修改起来较为复杂。

那么有没有什么办法可以简化这种引入或者导出操作呢?答案是肯定的,下面就为大家介绍一下require.context

以前我们都是通过import 方式引入路由

  1. import HomeView from '../views/HomeView.vue'
  2. Vue.use(VueRouter)
  3. const routes = [
  4. {
  5. path: '/',
  6. name: 'home',
  7. component: HomeView
  8. },
  9. {
  10. path: '/about',
  11. name: 'about',
  12. component: () => import('../views/AboutView.vue')
  13. }
  14. ]
1、示例:
  1. require.context('./test', false, /\.test\.js$/);
  2. //(创建出)一个 context,其中文件来自 test 目录,request 以 `.test.js` 结尾。
2、使用
2.1、在router文件下随便创建autoRouter.js文件
  1. let routerArr = []
  2. //查找views目录,以.vue结尾的文件,查找子目录
  3. const contexts = require.context('../views/', true, /\.vue$/)
  4. contexts.keys().forEach(value => {
  5. const path = value.substr(value.indexOf('/'), value.lastIndexOf('.') - 1)
  6. const componentLocation = value.substr(value.indexOf('.') + 1, value.lastIndexOf('.') - 1)
  7. const componentName = componentLocation.substr(componentLocation.lastIndexOf('/') + 1)
  8. //添加到路由数组中
  9. routerArr.push({
  10. path: path,
  11. name: componentName,
  12. component: () => import(`@/views${componentLocation}`)
  13. })
  14. })
  15. export default routerArr
2.2、在router文件下index.js文件中引入autoRouter.js文件
  1. import Vue from 'vue'
  2. import VueRouter from 'vue-router'
  3. //引入刚刚写的autoRouter.js文件
  4. import routerArr from './autoRouter.js'
  5. Vue.use(VueRouter)
  6. const routes = [
  7. //这里是其他手动写的路由
  8. ]
  9. const router = new VueRouter({
  10. mode: 'history',
  11. //这里进行路由合并
  12. routes:[...routes,...routerArr]
  13. })
  14. export default router

完成了,后面在views里面新建页面,就不要手动写路由了。

三、总结

我们可以通过require.context可以自动化引入文件。
其实我们不单单局限于组件,路由内, 所有模块文件都是通用的, 例如路由, 接口封装模块,都是可以使用的。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/86245
推荐阅读
相关标签
  

闽ICP备14008679号