💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
## 获取 state state 存储于 Store 中,可以使用 State 的 `store.getState()` 获取当前时刻的 state。 ```js import { createStore } from 'redux'; const store = createStore(fn); const state = store.getState(); ``` Redux 规定, 一个 state 对应一个 View。只要 state 相同,View 就相同。你知道 state,就知道 View 是什么样,反之亦然。