美文网首页
自定义hook

自定义hook

作者: penelope_2bad | 来源:发表于2020-07-02 16:45 被阅读0次
    1. 实现componentDidUpdate的效果
    export function useDidUpdate(effect: React.EffectCallback, deps?: React.DependencyList): void {
      const time = React.useRef(0);
      React.useEffect(() => {
        if (++time.current > 1) {
          effect();
        }
      }, deps);
    }
    

    相关文章

      网友评论

          本文标题:自定义hook

          本文链接:https://www.haomeiwen.com/subject/yzmrqktx.html