findDOMNode) is not a function 오류 발생시

import React, { findDOMNode, Component, PropTypes } from 'react';

이런식으로 findDOMNode 를 한 뒤 참조를 아래처럼 설정할 경우 오류가 날 것이다.

const node = findDOMNode(this.refs.input);

리액트 버전 15(일부 제외)부터는 findDOMNode를 쓰지 않고 바로 ref를 사용해도 된다.

const node = this.refs.input;

바로 사용해도 된다.

Subscribe
Notify of
guest

이 사이트는 스팸을 줄이는 아키스밋을 사용합니다. 댓글이 어떻게 처리되는지 알아보십시오.

0 댓글
Inline Feedbacks
View all comments
TOP