代码之家  ›  专栏  ›  技术社区  ›  gene b.

无法使用“this.refname.current”从useEffect访问Ref

  •  0
  • gene b.  · 技术社区  · 3 年前

    我这里缺少一些简单的东西,我需要访问 useEffect 。调试器显示 this 是未定义的,因此我不能 this.refOverlay.current; .

    // Ref
    const refOverlay = useRef(null); 
    
    // Sample useEffect that references it
    useEffect(() => {
        if (props.mode === 'new') {
            let b = this; // Undefined
            let a = this.refOverlay.current; // Error on this line
            if (a) {
                console.log('ok');
            }
        }
    }, [props.mode]);
    
    ...
    return (
    {/* JSX Definition */}
            <OverlayTrigger ref={refOverlay} trigger="click" rootClose placement="bottom" overlay={popoverApprover}>
                <a href="javascript:void(0)" className="more-info">TEST</a>
            </OverlayTrigger> 
    );
    
    0 回复  |  直到 3 年前
        1
  •  1
  •   windmaomao    3 年前

    没有这样的 this 在功能组件中。

      const Title = () => {
        const ref = useRef(null)
        
        useEffect(() => {
          if (ref.current) {
            ref.current.WHATEVERYOUWANTHERE
          }
        }, [])
      }
    

    注意:类和函数组件之间的一些差异

    • 函数组件没有这个,它是一个函数
    • 函数组件只是渲染函数
    • 要有状态,你需要 useState
    • 要有任何持久存储,您需要hook
        2
  •  1
  •   Gandalf The Gray    3 年前

    您已经定义了一个基于功能的组件。它没有 this 只需移除 关键字,你就没事了。