我需要传递父(父)组件的ref才能在子(子)组件中实现功能。这是我的代码的一部分:
父母
<div ref={(chat) => this.chat = chat}>
<ChatTab chat={this.chat}/>
)}
</div>
孩子
verificKeyPress(e){
if (e.key == "Enter") {
var chatt = this.props.chat.scrollHeight;
this.props.chat.scrollTop = chatt;
}
}
此功能用于使滚动条始终保持在下方,我也不知道它是否正确。
它的工作方式不起作用。
谢谢!