728x90 300x250 2024/12/241 클래스 필드 문법, bind 사용, 함수형 컴포넌트 비교하기 같은 예제를 가지고 클래스 컴포넌트에서 bind 사용 방식과, 클래스 필드 문법 사용, 함수형 컴포넌트 사용 방식을 비교해 보자 1. 클래스 컴포넌트 - 생성자에 bind 사용import React, { Component } from 'react';class MyComponent extends Component { constructor(props) { super(props); // 생성자에서 bind로 this 바인딩 this.state = { count: 0 }; this.handleClick = this.handleClick.bind(this); // bind로 this를 바인딩 } handleClick() { this.setState({ count: this.stat.. 2024. 12. 24. 이전 1 다음 728x90 반응형