본문 바로가기
TIL

[TIL]2023.04.28 / 장고 drf 개인프로젝트/

by kming 2023. 5. 2.

목표

 


참고자료


내용

html 연결

이메일 화면에 보이게

const intro = document.getElementById("intro")
    intro.innerText = payload_parse.email

fetch

const response = await fetch('http://127.0.0.1:8000/user/signup/', {

headers 타입정하기

        headers:{
            'content-type':'application/json',
        },

body 안에 json

        method:'POST',
        body: JSON.stringify({
            "email":email,
            "password":password
        })

문제 (해결하기 어려웠던 일이나 에러)

 


시도 (문제가 생긴 이유와 해결하기 위해 시도해본 것들)

 


해결 (최종적으로 해결이 되었을 때 시도한 것 정리)

 


마무리 (내가 새롭게 알게 된 것이나 짧은 정리)