我正在使用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
中吗?
答案 0 :(得分:2)
!
非null断言运算符可消除实际问题。 JavaScript / TypeScript中无法将testTitleRef
属性分配为<Child ref={this.titleRef} />
,因此它保持未定义状态(与testTitleRef
和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 />
}
}