Files

13 lines
219 B
Markdown
Raw Normal View History

---
title: Get State from the Redux Store
localeTitle: 从Redux商店获取状态
---
## 从Redux商店获取状态
使用`getState()`方法从存储中检索数据。
```js
let currentState = store.getState();
```