refs的作用是什么,你在什么业务场景下使用过refs
Posted crazycode2
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了refs的作用是什么,你在什么业务场景下使用过refs相关的知识,希望对你有一定的参考价值。
作用是操作dom
场景:图片加载完以后获取图片的宽高
// window上添加事件监听后,组件销毁前需要移除
class Test extends React.Component { constructor(props){ super(props); this.state = { top: 0 } this.handleWindowScroll = this.handleWindowScroll.bind(this); } handleWindowScroll() { this.setState({ top: document.body.scrollTop }) } componentDidMount() { window.addEventListener(‘scroll‘, this.handleWindowScroll); } componentWillUnmount() { window.removeEventListener(‘scroll‘, this.handleWindowScroll); } render() { return <div>{this.state.top}</div> } }
.
以上是关于refs的作用是什么,你在什么业务场景下使用过refs的主要内容,如果未能解决你的问题,请参考以下文章