redux-profiler Redux,它使用用户计时API来描述Redux动作和通知商店监听器所花费的时间 如何安装 npm install redux-profiler --save 用法 import { createStore } from 'redux' import profileStore from 'redux-profiler' function todos ( state = [ ] , action ) { switch ( action . type ) { case 'ADD_TODO' : return state . concat ( [ action . text ] ) default : return state } } ​ const store = c