我正在使用 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
吗?