📅  最后修改于: 2022-03-11 15:01:19.444000             🧑  作者: Mango
class Scrollable extends Component {
handleScroll = (e) => {
const bottom = e.target.scrollHeight - e.target.scrollTop === e.target.clientHeight;
if (bottom) { ... }
}
render() {
return (
);
}
}