() => this.doSomething() 과 this.doSomething 차이
매개 변수를 전달할 필요가없는 경우 다음을 사용할 수 있습니다. {this.doSomething} 그러나 매개 변수를 함수에 전달해야하는 경우 메서드가 즉시 실행됩니다. {this.doSomething(param)} 따라서 즉시 함수를 실행하지 않으려면 사용했던 화살표 메서드를 사용해야합니다. {() => this.doSomething(param)} 따라서 귀하의 경우에는 둘 다 동일합니다. onClick이 호출 될 때만 실행되기 때문입니다. 요소를 클릭합니다. 출처 : stackoverflow.com/questions/51863058/what-is-the-difference-between-both-button-click-in-the-given-react-component/51863128
프로그래밍/자바스크립트
2020. 9. 17. 15:10