Dva: 除了reducers中的方法可以访问state,effects、subscriptions中如何访问state

Created on 10 Nov 2016  ·  4Comments  ·  Source: dvajs/dva

除了reducers中的方法可以访问state,effects、subscriptions中如何访问state。
感觉非常不方便

question

Most helpful comment

effect 中可以通过 select 访问全局 state,subscription 不允许访问 state。

All 4 comments

effect 中可以通过 select 访问全局 state,subscription 不允许访问 state。

是否意味着subscription如果使用了其他的component的state,必须要自己copy一份?

@iwege subscription 只做订阅,订阅后具体的事情放到 effect 中。

那如果我想订阅某个state的变化呢

Was this page helpful?
0 / 5 - 0 ratings