文件名称:u4_lesson_redux_reducers
文件大小:2KB
文件格式:ZIP
更新时间:2024-04-05 06:59:37
Redux减速器 要求 intro to redux工作intro to redux 。 目标 了解Redux减速器如何工作 实施减速器 什么是还原剂? 减速器是返回某种状态的函数。 您可以将它们看作是我们可以将状态分解成的小模块,而不是拥有一个包含应用程序每一个状态的大对象。 这是一个例子: const initialState = { myName : '' } const SomeReducer = ( state = initialState , action ) => { switch ( action . type ) { case 'SOME_TYPE' : return { ... state , myName : action . payload } default : return { ... state } }
【文件预览】:
u4_lesson_redux_reducers-main
----README.md(5KB)