BackEnd/Django, DRF

[Django] static 파일 이미지 HTML에 추가하기 📖 문제점 인스타그램 클론 버전을 만드는 중 원래의 HTML에서 이미지를 넣듯이 코드를 작성한 후 runserver을 시키면 Django에서는 이미지가 깨져서 나타났다. 💡 해결 방법 static이라는 폴더를 따로 만들어주고 경로를 지정해 주어야 하는데 경로를 지정해주는 작업이 잘못되어서 이미지가 깨져서 나타나는 오류가 있었던 것이었다. 우선 settings.py 폴더 안에 들어가서 SATIC_URL = '/static/'의 아래에 아래의 코드를 붙여 넣어준다. STATICFILES_DIRS=[ os.path.join(BASE_DIR,'myprofile','static')] STATIC_ROOT = os.path.join(BASE_DIR, 's..
[Django] 첫 번째 장고 앱 작성하기, part4 링크 : https://docs.djangoproject.com/ko/4.1/intro/tutorial04 Django The web framework for perfectionists with deadlines. docs.djangoproject.com 📖 개요 이 글은 장고 공식 문서를 보고 실습한 내용을 다시 한번 기억하기 위해 쓰면서 정리한 내용입니다. 🎯 목표 Web-poll 애플리케이션을 진행하였고, 이후 간단한 폼 처리와 소스코드를 줄이는데 목표를 두고 있다. 💡 간단한 폼 쓰기 polls/detail.html을 수정하여, 템플릿에 HTML 요소를 포함시킨다 {% csrf_token %} {{ question.question_text }..
[Django] 첫 번째 장고 앱 작성하기, part3 링크 : https://docs.djangoproject.com/ko/4.1/intro/tutorial03 Django The web framework for perfectionists with deadlines. docs.djangoproject.com 📖 개요 이 글은 장고 공식 문서를 보고 실습한 내용을 다시 한번 기억하기 위해 쓰면서 정리한 내용입니다. Django에서는 웹 페이지와 기타 콘텐츠가 view로 전달됩니다. 각 view는 Python함수로 표현됩니다. 🎯 목표 Web-poll 애플리케이션에 공동 인터페이스인 "views"를 만든다. 질문 "색인" 페이지 - 최근 질문들을 표시합니다. 질문 "세부" 페이지 - 질문 내용과, 투표할 ..
[Django] 첫 번째 장고 앱 작성하기, part2 링크 : https://docs.djangoproject.com/ko/4.1/intro/tutorial02/ 첫 번째 장고 앱 작성하기, part 2 | Django 문서 | Django Django The web framework for perfectionists with deadlines. Toggle theme (current theme: auto) Toggle theme (current theme: light) Toggle theme (current theme: dark) Toggle Light / Dark / Auto color theme Overview Download Documentation News Community Code docs...
[Django] 첫 번째 장고 앱 작성하기, part1 링크 : https://docs.djangoproject.com/ko/4.1/intro/tutorial01/ 첫 번째 장고 앱 작성하기, part 1 | Django 문서 | Django Django The web framework for perfectionists with deadlines. Toggle theme (current theme: auto) Toggle theme (current theme: light) Toggle theme (current theme: dark) Toggle Light / Dark / Auto color theme Overview Download Documentation News Community Code docs...
Jong_seoung
'BackEnd/Django, DRF' 카테고리의 글 목록 (21 Page)