如何在 Console 中获取当前 redux 的 store 值
· 阅读需 2 分钟
如何在 Console 中获取当前 redux 的 store 值
如果你安装了 react developer tools ,你可以通过 $r.store.getState();
来获取,不用改别的代码.
Note: 你需要先打开 react developer tool 之后,让他可用, 不然你回遇到 $r is not defined
error
- 开打 developer tools
- 点击 「React」 tab
- 确认 provider 节点 (or topmost 节点) 现在是被选中的
- 然后输入
$r.store.getState();
or$r.store.dispatch({type:"MY_ACTION"})
到你的浏览器 console