webpack构建的项目自动引用文件下的所有指定类型的文件
需求背景是这样,./api/modules/下有n个js文件,在./api/index中导出所有modules的js文件,需要做到在modules新增js文件时,自动引入到./api/index中。因为在网上找不到好的解决方案,只能自己动手了
那么我就需要一个可以需求所有文件列表的api,也就是require.context,这里你们可以自己去找文档啦,
require.context调用后会返回一个对象,对象的keys方法会返回文件列表,既然有了文件列表,那么就可以手动引入了,这里因为import只能在顶层作用域使用,所以我们使用的是require,在这里会有一个坑,require的参数只能是字符串或者字符串+变量,如果是变量会抛出错误,最后我们只要把获取到的值导出就行啦!
this is the code
export default function (directory, useSubdirectories = false, regExp = /\.(.*)$/) { const context = require.context(directory, useSubdirectories, regExp); const keys = context.keys(); let modules = {}; keys.forEach(item=>{ let file = item.replace('./',''); let name = /(.*\/)([^.]).*/ig.exec(file)[1]; const data = require(`${directory}/${file}`); const {default: d, ...o} = data; modules[name] = {...d, ...o}; }); return modules; }
相关推荐
不知道该写啥QAQ 2020-11-12
webfullStack 2020-11-09
Yvettre 2020-09-15
想做大牛的蜗牛 2020-10-30
gloria0 2020-10-26
gaojie0 2020-09-11
SelinaChan 2020-08-14
不知道该写啥QAQ 2020-08-09
gloria0 2020-08-09
不知道该写啥QAQ 2020-08-02
hline 2020-07-29
SelinaChan 2020-07-28
wangdianyong 2020-07-23
webpackvuees 2020-07-23
yqoxygen 2020-07-20
不知道该写啥QAQ 2020-07-18
waterv 2020-07-18
81463166 2020-07-17