返回介绍

useReducer

发布于 2019-12-27 00:37:38 字数 1074 浏览 1021 评论 0 收藏 0

useState 的替代方案。 接受类型为 (state, action) => newState 的 reducer,并返回与 dispatch 方法配对的当前状态。 (如果你熟悉 Redux,你已经知道它是如何工作的。)
下面例子 useState 部分的计数器示例,重写为使用 reducer:

import { useReducer } from 'rax';

const initialState = {count: 0};

function reducer(state, action) {
  switch (action.type) {
	case 'reset':
	  return initialState;
	case 'increment':
	  return {count: state.count + 1};
	case 'decrement':
	  return {count: state.count - 1};
	default:
	  // A reducer must always return a valid state.
	  // Alternatively you can throw an error if an invalid action is dispatched.
	  return state;
  }
}

function Counter({initialCount}) {
  const [state, dispatch] = useReducer(reducer, {count: initialCount});
  return (
	<>
	  Count: {state.count}
	  <button onClick={() => dispatch({type: 'reset'})}>
		Reset
	  </button>
	  <button onClick={() => dispatch({type: 'increment'})}>+</button>
	  <button onClick={() => dispatch({type: 'decrement'})}>-</button>
	  </>
  );
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文