Skip to content

Latest commit

 

History

History
46 lines (32 loc) · 989 Bytes

1908 react-slick 사용 시 'getBoundingClientRect' error .md

File metadata and controls

46 lines (32 loc) · 989 Bytes

Issue: react-slick 적용 과정에서 'getBoundingClientRect' 에러

상황:

Exception in delivering result of invoking 'options.getIndexOptions': TypeError: Cannot read property 'getBoundingClientRect' of null

생각해낸 방안:

  • slick을 사용할 때의 태그 내부 문제

방안: slick을 사용할 때의 태그 내부 문제 (성공)


보통 slick의 사용은

import Slider from "react-slick";

를 사용하고 Slider 컴포넌트에 속성과 children에 원소들을 주는 방식으로 작성한다.

이 과정에서 Slider에 children이 없는 경우 위와 같은 에러 메세지가 출력된다.




    참조: