我有一个带有注销按钮的仪表板组件。单击注销后,使用火基注销并重定向以登录组件。我收到以下错误。我该如何解决这个问题。
TypeError: Cannot set property 'scrollTop' of undefined
Dashboard.componentDidUpdate
69 | }
70 | componentDidUpdate(e) {
71 | if (e.history.location.pathname !== e.location.pathname) {
> 72 | this.refs.mainPanel.scrollTop = 0;
| ^ 73 | if (this.state.mobileOpen) {
74 | this.setState({ mobileOpen: false });
75 | }
答案 0 :(得分:1)
在尝试设置this.refs.mainPanel
之前,请确保scrollTop
存在:
if (this.refs.mainPanel) {
this.refs.mainPanel.scrollTop = 0;
}
或者这个:
(this.refs.mainPanel || {}).scrollTop = 0;