首页
注册
登录
V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请
登录
V2EX
›
bonashen
›
全部回复第 1 页 / 共 1 页
回复总数
2
2018-02-27 19:14:11 +08:00
回复了
openroc
创建的主题
›
程序员
›
各位猿,大家怎么整理 chrome 的 bookmarks?
tony 插件
2018-02-01 22:18:09 +08:00
回复了
wuchangming89
创建的主题
›
JavaScript
›
分享:使用 webpack 的 require.context 实现路由“去中心化”管理
确实不错,通常我是在 redux 中使用。
```js
const context = require.context('./', false, /\.js$/);
const keys = context.keys().filter(item => item !== './index.js' && !item.endsWith('.test.js'));
const regexp = /\.\/(\S+)\.js$/;
const reducers = keys.reduce((reducers, key) => {
const match = regexp.exec(key);
const result = reducers;
let reducer = context(key).default;
reducer = isFunction(reducer) ? reducer : combineReducers({ ...reducer });
result[match[1]] = reducer;
return result;
}, {});
export default reducers;
```
关于
·
帮助文档
·
博客
·
API
·
FAQ
·
实用小工具
·
5391 人在线
最高记录 6679
·
Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 13ms ·
UTC 07:16
·
PVG 15:16
·
LAX 23:16
·
JFK 02:16
Developed with
CodeLauncher
♥ Do have faith in what you're doing.