我正在将ReactJS与NextJS一起使用。当我尝试设置ref
时,我的控制台将返回undefined
,这怎么可能?如何解决这个困难?我试图在网络上阅读一些建议,但没有成功。
这是我的摘录:
componentDidMount() {
this.myRef = React.createRef();
window.addEventListener('scroll', this.handleScroll, { passive: true })
}
componentWillUnmount() {
window.removeEventListener('scroll', this.handleScroll)
}
handleScroll(e) {
e.preventDefault();
// let offsetTop = this.myRef.current.offsetTop;
// here I'm trying just a console.log to preview the value
// otherwise my program will just crash
console.log("I'm scrolling, offsetTop: ", this.myRef)
}
render() {
return (
<div className={style.solution_container_layout} >
<div ref={this.myRef} className={style.solution_item}>
任何提示都会很棒, 谢谢
答案 0 :(得分:2)
从current
返回的对象的createRef
属性是在第一个渲染上设置的,因此,如果在渲染组件后在componentDidMount
中创建它,则将不会设置它
您还必须绑定handleScroll
方法,否则this
将不是您期望的。
示例
class App extends React.Component {
myRef = React.createRef();
componentDidMount() {
window.addEventListener("scroll", this.handleScroll, { passive: true });
}
componentWillUnmount() {
window.removeEventListener("scroll", this.handleScroll);
}
handleScroll = () => {
console.log("I'm scrolling", this.myRef.current);
};
render() {
return <div ref={this.myRef} style={{ height: 1000 }}> Scroll me </div>;
}
}
ReactDOM.render(<App />, document.getElementById("root"));
<script src="https://unpkg.com/react@16/umd/react.development.js"></script>
<script src="https://unpkg.com/react-dom@16/umd/react-dom.development.js"></script>
<div id="root"></div>
答案 1 :(得分:1)
很难从添加的代码中看出来,但是您可能只是在构造函数中缺少此命令:
constructor( props ){
super( props );
this.handleScroll = this.handleScroll.bind(this)
}