Glossary State Action Reducer Dispatching Function Action Creator Async Action Middleware Store Store creator Store enhancer Glossary This is a glossary of the core t...
Redux 的基础概念 三个基本原则 Actions Reducers Store Data Flow Redux 的基础概念 三个基本原则 整个应用只有唯一一个可信数据源,也就是只有一个 Store State 只能通过触发 Action 来更改 State 的更改必须写成纯函数,也就是每次更改总是返回一个新的State,在 Red...