일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 자바 공부
- 데이터모델링과마이닝
- JavaScript
- react firebase
- 리액트 훅
- NextJS
- design pattern
- 코딩테스트 고득점 Kit 완전탐색
- 디자인 패턴
- 장고
- vanillaJS
- 코딩테스트 고득점 Kit
- useState
- codesandbox
- 프로그래밍 언어론
- 코틀린
- websocket
- React JS
- 리액트
- useEffect
- react
- 자바스크립트
- 컴퓨터 네트워크
- 백준
- 프로그래머스 완전탐색
- Java
- react hook
- 프로그래머스
- 자바
- 프로그래머스 자바
- Today
- Total
목록nomad coding (2)
기록하는 개발자
구현할 화면 1. axios로 api의 json을 가져오는 동안 "loading..." 이라는 문구를 띄워준다. 2. json data를 모두 가져오면 영화 목록을 보여준다. import React from "react"; import axios from "axios"; import Movie from "./Movie"; import "./App.css"; class App extends React.Component { state={ isLoading : true, movies:[] }; /*axios는 항상 빠르진 않아서 js에게 componentDidMount 함수가 끝날 때까지 약간 시간이 걸릴 수 있다고 전달해야한다. 이에 getMovies 비동기 함수를 만들어 axios.ge..
Peach🍑 GreenApple🍏 WaterMelon🍉 ☁ 🌞 ☃ ☔ body{ background-color: lightblue; text-align: center; } // document : 현재 js 파일과 연결된 html 파일 // document에 first 라는 id를 가진 element를 가져온다. let firstElement=document.getElementById("first"); console.log(firstElement); // document에 second 라는 id를 가진 element의 innerText를 가져온다. let SecondElement=document.getElementById("second").innerText; console.log(SecondElemen..