博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
react:reducer-creator
阅读量:5811 次
发布时间:2019-06-18

本文共 450 字,大约阅读时间需要 1 分钟。

function createReducer(initialState, handlers) {    return function reducer(state = initialState, action) {        if (handlers.hasOwnProperty(action.type)) {            return handlers[action.type](state, action)        } else {            return state        }    }}const todosreducer = createReducer([], {    'ADD_TODO': addTodo,    'TOGGLE_TODO': toggleTodo,    'EDIT_TODO': editTodo});

 

转载于:https://www.cnblogs.com/Nyan-Workflow-FC/p/9516781.html

你可能感兴趣的文章
java springcloud版b2b2c社交电商spring cloud分布式微服务(十五)Springboot整合RabbitMQ...
查看>>
10g手动创建数据库
查看>>
Windwos Server 2008 R2 DHCP服务
查看>>
UVa 11292 勇者斗恶龙(The Dragon of Loowater)
查看>>
白话算法(7) 生成全排列的几种思路(二) 康托展开
查看>>
d3 v4实现饼状图,折线标注
查看>>
微软的云策略
查看>>
Valid Parentheses
查看>>
【ES6】数值的扩展
查看>>
性能测试之稳定性测试
查看>>
ES6的 Iterator 遍历器
查看>>
2019届高二(下)半期考试题(文科)
查看>>
nginx 301跳转到带www域名方法rewrite(转)
查看>>
AIX 配置vncserver
查看>>
windows下Python 3.x图形图像处理库PIL的安装
查看>>
【IL】IL生成exe的方法
查看>>
network
查看>>
SettingsNotePad++
查看>>
centos7安装cacti-1.0
查看>>
3个概念,入门 Vue 组件开发
查看>>