Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- https://www.inflearn.com/course/lecture?courseslug=%ea%b9%80%ec%98%81%ed%95%9c%ec%9d%98-%ec%8b%a4%ec%a0%84-%ec%9e%90%eb%b0%94-%ea%b8%b0%eb%b3%b8%ed%8e%b8&unitid=194709&category=questiondetail&tab=community&q=1314387
- 매핑 #
- while문
- Servlet
- JSON형식의 response
- Dispatcher
- 피그마
- sendRedirect
- 요구사항정의서
- Break
- 다형성 #부모타입 #자식타입
- WAS
- 김영한
- webserver #WAS #ServerApp
- 화면정의서
- GET방식
- Request
- POST방식
- https://www.inflearn.com/course/lecture?courseslug=%ea%b9%80%ec%98%81%ed%95%9c%ec%9d%98-%ec%8b%a4%ec%a0%84-%ec%9e%90%eb%b0%94-%ea%b8%b0%eb%b3%b8%ed%8e%b8&unitid=194711
- 톰캣
- xml
- Spring MVC
- 한글깨짐
- CONTINUE
- https://www.inflearn.com/course/lecture?courseslug=%ea%b9%80%ec%98%81%ed%95%9c%ec%9d%98-%ec%8b%a4%ec%a0%84-%ec%9e%90%eb%b0%94-%ea%b8%b0%eb%b3%b8%ed%8e%b8&unitid=194690
- Forwarding
Archives
- Today
- Total
Step it up now
유튜브 영상 본문
const ajax = new XMLHttpRequest();
const Youtube_URL="https://www.googleapis.com/youtube/v3/videos?part=snippet&key=AIzaSyDYzfy-ltADAvWb4LrJVsfgh0zQiE92PHE&maxResults=15&chart=mostPopular"

const most = JSON.parse(ajax.response);
ajax.send();
=> ajax의 답을 가져온 것
items (유튜브 영상) 에 있는 값이 배열의 형태이다.
배열의 형태 값을 가져오기 위해 JSON parse를 통해 array를 가져옴
{ kind : get방식 , url , 동기/ 비동기처리방식 } 이 옴
'수업 > JavaScript, css, html' 카테고리의 다른 글
calendar 구현하기 (0) | 2023.11.14 |
---|---|
원시형 / boolean (0) | 2023.11.12 |
Firebase (0) | 2023.11.08 |
[CSS] Position- relative /absolute 3 (0) | 2023.11.01 |
[CSS] Position- relative /absolute 2 (0) | 2023.10.31 |