所有优点@splintor(谢谢)。
但这是我自己的派生版本。
好处:
- 导出的模块收集在一个
{module_name: exports_obj}
对象下。
- module_name是从其文件名构建的。
- ...没有扩展名,并用下划线代替斜杠(在扫描子目录时)。
- 添加了注释以简化自定义。
- 即,例如,如果根目录模块需要手动在子目录中添加文件,则可能不希望包含这些文件。
编辑:如果像我一样,如果您确定您的模块不会(而不是至少在根级别)返回常规javascript对象以外的任何内容,则还可以“装载”它们以复制其原始目录结构(请参阅代码(深版本) )部分)。
代码(原始版本):
function requireAll(r) {
return Object.fromEntries(
r.keys().map(function(mpath, ...args) {
const result = r(mpath, ...args);
const name = mpath
.replace(/(?:^[.\/]*\/|\.[^.]+$)/g, '') // Trim
.replace(/\//g, '_') // Relace '/'s by '_'s
;
return [name, result];
})
);
};
const allModules = requireAll(require.context(
// Any kind of variables cannot be used here
'@models' // (Webpack based) path
, true // Use subdirectories
, /\.js$/ // File name pattern
));
例:
最终的样本输出console.log(allModules);
:
{
main: { title: 'Webpack Express Playground' },
views_home: {
greeting: 'Welcome to Something!!',
title: 'Webpack Express Playground'
}
}
目录树:
models
├── main.js
└── views
└── home.js
代码(深版本):
function jsonSet(target, path, value) {
let current = target;
path = [...path]; // Detach
const item = path.pop();
path.forEach(function(key) {
(current[key] || (current[key] = {}));
current = current[key];
});
current[item] = value;
return target;
};
function requireAll(r) {
const gather = {};
r.keys().forEach(function(mpath, ...args) {
const result = r(mpath, ...args);
const path = mpath
.replace(/(?:^[.\/]*\/|\.[^.]+$)/g, '') // Trim
.split('/')
;
jsonSet(gather, path, result);
});
return gather;
};
const models = requireAll(require.context(
// Any kind of variables cannot be used here
'@models' // (Webpack based) path
, true // Use subdirectories
, /\.js$/ // File name pattern
));
例:
使用此版本的上一示例的结果:
{
main: { title: 'Webpack Express Playground' },
views: {
home: {
greeting: 'Welcome to Something!!',
title: 'Webpack Express Playground'
}
}
}
image-size-loader
对所有图像使用,以创建具有正确纵横比的占位符。