<div style={{ float:"left", clear: "both" }} ref={(el) => { this.messagesEnd = el; }}> </div>
scrollToBottom = () => { this.messagesEnd.scrollIntoView({ behavior: "auto" }); }
componentDidUpdate(prevProps, prevState, snapshot) { const { message } = this.state; this.scrollToBottom(); }
componentDidMount() { this.scrollToBottom(); }
标签:messagesEnd,界面,发送,react,聊天,scrollToBottom From: https://www.cnblogs.com/wuyongcong/p/17450879.html