最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - React hooks useCallback not reflecting updated state - Stack Overflow

programmeradmin0浏览0评论

I have a simplified version of my problem as follows:

const Component = () => {
  const [data, setData] = useState([]);

  const fn = useCallback((num) => {
    const newData = [...data];
    newData.push(num);

    setData(newData);
  }, [data]);

  return <button onClick={() => fn(Math.random())}>{data.join()}</button>;
};

My problem is that newData is always [], instead of reflecting the updated state values. Therefore, my button will only show the latest data value instead of an array with increasing values. Why is this the case as I've included it in the dependency array of the useCallback function?

I have a simplified version of my problem as follows:

const Component = () => {
  const [data, setData] = useState([]);

  const fn = useCallback((num) => {
    const newData = [...data];
    newData.push(num);

    setData(newData);
  }, [data]);

  return <button onClick={() => fn(Math.random())}>{data.join()}</button>;
};

My problem is that newData is always [], instead of reflecting the updated state values. Therefore, my button will only show the latest data value instead of an array with increasing values. Why is this the case as I've included it in the dependency array of the useCallback function?

Share Improve this question asked Aug 24, 2020 at 10:11 Darius MandresDarius Mandres 9281 gold badge16 silver badges35 bronze badges 1
  • 1 Please re-create the problem, this code works fine. – Dennis Vash Commented Aug 24, 2020 at 10:25
Add a ment  | 

2 Answers 2

Reset to default 8

I guess the problem is most probably happen in the "button" ponent which you have simplified in your question therefore we cannot see the real problem.

There could be multiple reasons why states in the "useCallback" is not updated:

  1. you didn't add the state in the dependency of "useCallback". This is not your case as you already add data in the dependency

  2. you use this "fn" in another "useCallback" and you didn't add fn as a dependency of that "useCallback".

        // what you probably write in the "button" ponent
        const handleClick = useCallback(() => {
           ...
           doSomethingWithState(someState);
           props.onClick(); //<--- this is the fn you passed
        }, [someState]);
    
    
        // what you should write
        const handleClick = useCallback(() => {
           ...
           doSomethingWithState(someState);
           props.onClick(); //<--- this is the fn you passed
        }, [someState, props.onClick]); //<---- you need to add the method as dependency as well
    

please verify if this is your case.

Your code works just as you expect:

https://codesandbox.io/s/relaxed-ishizaka-n2eg6?file=/src/App.js

It does show the updated state values.

发布评论

评论列表(0)

  1. 暂无评论