343

问答题 343 /464

redux里常用方法

参考答案

参考回答:

提供 getState() 方法获取 state;

提供 dispatch(action) 方法更新 state;

通过 subscribe(listener) 注册监听器;

等等