React/React Native에서 컨스트럭터를 사용하는 것과 getInitialState를 사용하는 것의 차이점은 무엇입니까? 둘 다 서로 바꿔 사용하는 걸 봤어요. 두 가지 주요 사용 사례는 무엇입니까?장점/단점이 있습니까?그게 더 나은 방법인가요?이 두 가지 접근법은 서로 호환되지 않습니다.ES6하고 ES6를 해야 .getInitialStateReact.createClass. ES6 클래스의 주제에 대해서는 React 공식 문서를 참조하십시오. class MyComponent extends React.Component { constructor(props) { super(props); this.state = { /* initial state */ }; } } 와 동등하다 var MyComponent..