---
title: Get State from the Redux Store
localeTitle: 从Redux商店获取状态
---
## 从Redux商店获取状态

使用`getState()`方法从存储中检索数据。

```react.js
let currentState = store.getState(); 

```