美文网首页
react-hooks

react-hooks

作者: 芗芗_ | 来源:发表于2021-03-18 19:38 被阅读0次

    为什么hooks不能写在条件判断语句里面

    let hookTypesDev: Array<HookType> | null = null; // 存储hooks调用顺序
    let hookTypesUpdateIndexDev: number = -1;
    mountHookTypesDev:function  // mount阶段 存储hooks顺序
    updateHookTypesDev:function // update阶段 检测当前调用的hooks-name与hookTypesDev[hookTypesUpdateIndexDev]存的那么是否一致
    
    双fiber树的作用
    > react源码解析:在react中workInProgress Fiber 树存在的意义
    https://blog.csdn.net/weixin_40599109/article/details/112581717

    相关文章

      网友评论

          本文标题:react-hooks

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