-
-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Redux #58
Comments
やっぱりログがいいかな |
logとtransformを作るのが正解っぽい |
これ分かりやすい http://briantroncone.com/?p=529 |
Reduxのmiddlwareってstoreの値自体は改変できないけど、dispatchするactionは変更できる。 |
export default (/*store*/) => next => action => {
const timestampedAction = Object.assign({}, {
timeStamp: Date.now()
}, action);
return next(timestampedAction);
}; こういう感じの以外にnextに対して変更したactionを与えるのって何があるんだろ? |
でも、middlwareを前提としたactionを作る傾向が強くて、 |
http://redux.js.org/docs/advanced/Middleware.html とあって、connectとコンセプト自体は同じなのだけど、
と言ってる。
|
ReduxとConnectのmiddlewareの違いについて考えてるけど、
中間をどうするのかが中心なかんじがする。 |
maybe, effectable. |
Reduxは |
#97 でDispatcherベースのMiddlewareを実装したので、コレベースで話をやる |
Breaking Change: reduxjs/redux#1744 |
Reduxのアーキテクチャ
URL: https://github.com/rackt/redux
どう書ける?
どういう仕組み?
どういう事に向いてる?
どういう事に向いていない?
この仕組みを使ってるもの
チェックリスト
The text was updated successfully, but these errors were encountered: