Results 2 issues of JoV5

# 彻底理解Redux中applyMiddleware中间件原理 本文逐步讲解了中间件是如何通过applyMiddleware方法应用的,看完本文,应该可以理解 中间件原理,中间件该怎么写,以及为什么这么写。 假设现在有这样两个中间件 ```js const logger = store => next => action => { console.log('dispatching', action); let result = next(action); console.log('next state', store.getState()); return result; }; const crashReporter...

### Describe the feature / 功能描述 force布局能不能支持drag-element-force,现在使用d3-force数据量稍微大点就卡,之前v4版本使用force在drag的时候重新布局就不卡,v5版本怎么进行支持呢 ### Are you willing to contribute? / 是否愿意参与贡献? ✅ Yes / 是

question 💬