2

我有一个使用useReducer.

function useMyCustomHook() {
   const [state, dispatch] = useReducer(EntityReducer, initialState);

   // console.log(state); // 1- state is up to date here

   const customDispatch = (action) => {
       dispatch({ ...action }); // first call EntityReducer by action.type

       //2- I use state and dispatch here(for example:use state for call an api, then dispatch response)
       // but the state is previous not new state?

       switch (action.type) {
           case "something":
               // use dispatch and state here                     
               return state;
       }
   }

   return [state, customDispatch];
}

使用自定义钩子:

function HomePage(props) {
    const [state, dispatch] = useMyCustomHook();

    // for example use dispatch on click a button

    return (<div>...</div>)
}

问题:state内部是 prev 状态customDispatch。我怎样才能解决这个问题?

提前致谢。

4

1 回答 1

5

据我所知,您的状态在 react-hooks 中已经过时(被关闭捕获)。

然后你有这些解决方案:

1-useEffect有依赖关系

useEffect(() => {
 // state will be updated here
 // declare 'customDispatch' here
}, [state,...]);

2-useRef里面useMyCustomHook像:

const [state, dispatch] = useReducer(EntityReducer, initialState);
const stateRef=useRef(state);

useEffect(() => {
        stateRef.current=state;
});

const customDispatch = (action) => {
// use state.current instead of state(state.current will be updated)
}
于 2020-03-27T12:21:50.263 回答