동식이 블로그

JS promise

JavaScript

JS Prmoise Promise복습 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 // arrow function으로 사용하려면 return과 {}를 생략해야 됨 const makeOrder = function (order) { return new Promi...

JS method

JavaScript

JS method 함수호출 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 function printHello(){ console.log('hello') } function baz(){ setTimeout(printHello, 3000) } function bar(){ baz...

Axios

Axios

axios Promise based HTTP client for the browser and node.js 라이브러리 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 <!DOCTYPE html> <html lang="en"> <head>...

JS Event

javascript

JS Event EventListener 마우스 이벤트 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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 <!DOCTY...

FakeInsta

fake-insta8

Axios를 사용해서 여러 기능 수정 ##### fake-insta 좋아요 기능 수정 페이지 요청을 다시하지 않고 그 해당 페이지에서 바뀌도록 1 2 3 4 5 6 // posts-_post.html {% if user in post.likes.all %} <i class="like-btn fas fa-heart" styl...

JS basic

JavaScript

JS(java script) JS Basic Syntax ES6 index.html / main.js 만들기 index.html : ! + tab으로 자동완성 body에 <sctript scr=".main.js"></script> 로 스크립트 태그는 어디에 넣을까? : 바디태그...

django

django m2m

190423 09-m2m 1. 모델설정(models) 1) User 팔로우기능을 구현 id // from_user_id // to_user_id ManyToManyField가 선언된 모델과 가리키는 모델이 동일하다면, 위와 같이 필드가 생성됨 1 2 3 4 5 6 7 8 9 # accounts-mo...

FakeInsta

fake-insta7

Hashtag기능 추가 190422 fake-insta7 hashtag기능 추가 1 2 # posts-urls.py path('hashtag/<int:id>/', views.hashtag, name="hashtag"), 1 2 3 4 5 6 7 8 9 # posts-views.py def hashtag(req...

django

django rest API

190419 REST API postman 설치 tmdb api 사용 회원가입 후 api 권한 획득하기 test get-top-rated 요청 보내보기 movie/top_rated 1 2 ## 서버주소 https://api.themoviedb.org/3/mo...

django

django relationship

190417 Relationship User는 Post와 1:n , Post는 Comment와 1:n, Commet는 각각 1:n관계 1 2 3 4 5 6 7 8 9 10 11 12 13 14 # models.py from django.db import models class User(models.Model): na...