Props
-
[React] React 에서 class 사용하기FRONT-END/React 2020. 11. 4. 15:17
| this.props 란? 한국어로 말하면 "이 속성"이다. 클래스 내에서 기술했으니 클래스 안에서 정의되어 있는 first 와 last를 의미한다. *함수나 const로 되어있는곳에서는 this.props 가 적용되지 않는다. import React, {Component} from "react"; class MyName extends Component { render(){ const {first,last} = this.props; return( 이름 : {first} {last} 닉네임 : {this.props.first} {this.props.last} ) } } export default MyName; | jsp 와 React의 출력 방식의 차이 jsp 문서에서 표현식 출력 jsp 문서에서 EL ..