Notice
Recent Posts
Recent Comments
Link
«   2025/04   »
1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30
Archives
Today
Total
관리 메뉴

우리는 Calisthenics 입니다!

[React] 기본문법(1) 본문

Frontend/React

[React] 기본문법(1)

日常茶飯事 2021. 7. 20. 22:57

React에 대한 기본적인 문법과 팁에 대해서 정리해보았습니다😀😀

 

 

  • state를 변경하려고 하면 무조건 setState를 사용해서 변경해주어야함
    • 이유: state 값에 변경이 생긴다면 이 값을 토대로 render()를 호출해줘야 하는데 setState를 사용하면 React에서 자동으로 render function을 호출해줌
  • setState를 사용할 때 state안에 default값들을 선언할 필요는 없다.
class App extends React.Component{
    state = {
        isLoading: false,
    };
    componentDidMount() {
        setTimeout(() => {
            this.setState({ isLoading:true, book:true })
        }, 3000);
 }

 

  • state가 필요없으면 class가 아닌 function component을 사용하면 된다

 

  • 자식 component에서 props를 받으려면 props를 인자로 받아줘야한다.
function Card(props){
    return {
        <div>{props.id}</div>
    }
}

 

  • component에서 메서드를 만들 때 this 바인딩을 위해 화살표 함수로 메서드 정의
// 여기서 화살표 함수로 해줘야 this에 component가 바인딩됨
addCard = () => {
    axios({
      url: "https://dog.ceo/api/breeds/image/random"
    })
    .then((res) => {
      console.log(res.data.message, this)
      this.setState(current => ({ images: '1'}))