5

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

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

我在子组件中创建了一个引用,遵循这个堆栈溢出答案并(试图)使用前向引用在我的父组件上访问它。

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 是未定义的。这是为什么?我究竟做错了什么?

编辑: 埃斯图斯帮助我创建了裁判。但是当我触发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,因为它们包含循环依赖。

所以 current 似乎没有offsetTop. 这可能与在我的实际应用程序中子组件包装在 material-ui'swithStyle和 React-Redux'中的事实有关connect吗?

4

1 回答 1

3

!非空断言运算符抑制了实际问题。在 JavaScript/TypeScript 中,testTitleRef无法从 as 分配属性<Child ref={this.titleRef} />,因此它保持未定义(也与testTitleRefand不一致titleRef)。

它应该是这样的:

  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 />
  }
}
于 2018-11-10T18:07:48.937 回答