리액트 ref1 [React] 컴포넌트의 DOM 관련 이벤트 - 무한 scroll 예제 오늘은 ref라는 특수 프로퍼티를 사용하여 DOM 객체에 접근하는 방법과 onClick 같은 이벤트 프로퍼티에 대해 알아보겠습니다. 쉽게 말씀드리면 getElementById()로 받은 객체를 addEventListener()로 등록한 함수에서 사용하는 것입니다. 자바스크립트를 아시는 분은 근방 이해하실 테니, 아래 무한 scroll 예제를 한번 보시죠! // ..\test_project\src\components\ScrollComponent.jsx import React from "react"; class ScrollComponent extends React.PureComponent { constructor(props) { super(props); this.state = { listEnd: 20, //.. 2020. 9. 28. 이전 1 다음