constructor (props) {
super(props);
this.handleChange = this.handleChange.bind(this);
}
handleChange (e) {
console.log(e.target.value);
}
์ ๋ฉ์๋๋ฅผ ๋ง๋ค๋ ๋ง๋ค constructor๋ฅผ ์์ ํด์ผ ํ๋ ๋ฒ๊ฑฐ๋ฌ์์ ๋๊ธฐ ์ํจ.
babel
์ transform-class-properties
๋ฌธ๋ฒ์ ์ฌ์ฉํด ํ์ดํ ํจ์๋ก ๋ฉ์๋๋ฅผ ์ ์ํ๋ค.
handleChange = (e) => {
console.log(e.target.value);
}
p.130 - 132