누구나 console.log heightSet을 정의하지 않은 이유를 알 수 있습니까?반응에서 scrollHeight를 사용하려고 시도했습니다.
componentDidMount() {
this.updateDimensions();
window.addEventListener('resize', this.updateDimensions.bind(this));
}
componentWillUnmount() {
window.removeEventListener('resize', this.updateDimensions.bind(this));
}
updateDimensions() {
this.setState({ heightSet: document.scrollHeight });
console.log(document.clientHeight);
}
같은 CONSOLE.LOG는 window.innerHeight 근무 (clientHeight뿐만 아니라 정의되지 않은됩니다)하지만 난 scrollHeight을 원하는 내부 높이를 원하지 않는다.
감사
그 이유가 될 수 없습니다 오 일반적인 왜 미정인가. 그곳에. 업데이트되었습니다. – tatsu