使用TypeScript反应引用:无法读取未定义的属性“当前”

时间:2018-11-10 17:49:50

标签: reactjs typescript forward-reference react-ref

我正在使用TypeScript构建React应用程序。

我要创建一个按钮,该按钮滚动到我的主页上子组件的标题。

我已经在this stack overflow答案之后在子组件中创建了一个引用,并(尝试)使用forward refs在我的父组件上对其进行了访问。

export class Parent extends Component {
  private testTitleRef!: RefObject<HTMLHeadingElement>;

  scrollToTestTitleRef = () => {
    if (this.testTitleRef.current !== null) {
      window.scrollTo({
        behavior: "smooth",
        top: this.testTitleRef.current.offsetTop
      });
    }
  };

  render() {
    return <Child ref={this.testTitleRef} />
  }
}

interface Props {
  ref: RefObject<HTMLHeadingElement>;
}

export class Child extends Component<Props> {
  render() {
    return <h1 ref={this.props.ref}>Header<h1 />
  }
}

不幸的是,当我触发scrollToTestTitleRef时收到错误消息:

Cannot read property 'current' of undefined

表示ref未定义。这是为什么?我在做什么错了?

编辑: Estus帮助我创建了裁判。但是当我触发scrollToTestTitleRef()事件时,它不会滚动。 当我console.log this.testTitleRef.current时,我得到输出:

{"props":{},"context":{},"refs":{},"updater":{},"jss":{"id":1,"version":"9.8.7","plugins":{"hooks":{"onCreateRule":[null,null,null,null,null,null,null,null,null,null,null,null],"onProcessRule":[null,null,null],"onProcessStyle":[null,null,null,null,null,null],"onProcessSheet":[],"onChangeValue":[null,null,null],"onUpdate":[null]}},"options":{"plugins":[{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{}]}},"sheetsManager":{},"unsubscribeId":null,"stylesCreatorSaved":{"options":{"index":-99999999945},"themingEnabled":false},"sheetOptions":{},"theme":{},"_reactInternalInstance":{},"__reactInternalMemoizedUnmaskedChildContext":{"store":{},"storeSubscription":null},"state":null}

注意:我删除了cacheClasses_reactInternalFiber__reactInternalMemoizedMaskedChildContext,因为它们包含循环依赖性。

因此,当前似乎没有offsetTop键。这可能与以下事实有关:在我的实际应用中,子组件包装在material-ui的withStyle和React-Redux的connect中吗?

1 个答案:

答案 0 :(得分:2)

!非null断言运算符可消除实际问题。 JavaScript / TypeScript中无法将testTitleRef属性分配为<Child ref={this.titleRef} />,因此它保持未定义状态(与testTitleReftitleRef也不一致)。

应该是这样的:

  private testTitleRef: React.createRef<HTMLHeadingElement>();

  scrollToTestTitleRef = () => {
      if (!this.testTitleRef.current) return;

      window.scrollTo({
        behavior: "smooth",
        top: this.testTitleRef.current.getBoundingClientRect().top + window.scrollY
      });
  };
  render() {
    return <Child scrollRef={this.testTitleRef} />
  }

export class Child extends Component<Props> {
  render() {
    return <h1 ref={this.props.scrollRef}>Header<h1 />
  }
}