@@ -222,6 +222,8 @@ Reducerという命令を元に新しいStateを作り出す仕組みを設け
222
222
223
223
つまり、プラグインそのものだけで全ての処理が完結するわけではありません。
224
224
プラグインで処理した結果を受け取り、その結果を処理する実装も同時に必要となっています。
225
+ Reduxでは_ Middleware_ を前提とした処理を実装として書くことも多いです。
226
+
225
227
そういう意味ではプラグインと実装が密接といえるかもしれません。
226
228
227
229
そのため、プラグインのみで全処理が完結するような機能を作る仕組みは向いていません。
@@ -237,5 +239,10 @@ Reducerという命令を元に新しいStateを作り出す仕組みを設け
237
239
238
240
##参考
239
241
242
+ - [ Middleware | Redux] ( http://redux.js.org/docs/advanced/Middleware.html )
243
+ - [ 10. Middleware · happypoulp/redux-tutorial Wiki] ( https://github.com/happypoulp/redux-tutorial/wiki/10.-Middleware )
244
+ - [ Brian Troncone – Redux Middleware: Behind the Scenes] ( http://briantroncone.com/?p=529 )
245
+ - [ ReduxのMiddlewareについて理解したいマン | moxt] ( https://hogehuga.com/post-1123/ )
246
+ - [ Understanding Redux Middleware — Medium] ( https://medium.com/@meagle/understanding-87566abcfb7a#.8fr4jmjwz )
240
247
241
248
[ Redux ] :https://github.com/reactjs/redux " reactjs/redux: Predictable state container for JavaScript apps "