在ref中使用ref滚动元素

时间:2018-09-19 22:16:20

标签: javascript reactjs

<AllPosts ref={this.allPostsRef} allArticles={articles} reference={this.allPostsRef}/>

在Allpost.js

componentDidMount = () =>{

        console.log("allposts component mounted!")
        window.addEventListener("scroll", ()=>{console.log(window.scrollY)
        console.log(this.props.reference.current.scrollTop)

    })
  }

为什么“ this.props.reference.current.scrollTop ”未定义?

0 个答案:

没有答案