Notice
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
- docker
- 백엔드
- class view
- serializer
- 팀프로젝트 기획
- Python
- 딥러닝
- 팔로우 기능 에러
- python to json
- 와이어프레임
- test.py
- 이진 논리 회귀
- 장고
- original set
- 댓글지우기
- json to db
- 개인페이지
- 머신러닝
- Django
- CNN
- 프로필사진 업로드
- API명세
- 프론트엔드
- ERD
- 댓글쓰기
- 북마크한 목록 가져오기
- 다항 논리 회귀
- js
- DRF
- 비밀번호 수정
Archives
- Today
- Total
목록댓글쓰기 (1)
코딩 개발일지
장고(Django) 댓글쓰기/지우기
가장먼저 detail 페이지를 만들어 줄 것이다. (게시글 1개 보기!!!!) views.py에 detail 함수를 만들어 주고 def detail(request): pass urls.py에서 path로 연결해 준다! path('/', views.detail), # 게시물 1개 보기 detail.html도 만들어 준다. 이제 detail 함수를 만져준다. (bucket은 버킷리스트이다ㅋㅋㅋ) # 개인 게시물 페이지 def detail(request, bucket_id): bucket = Bucket.objects.get(id=bucket_id) context = { 'bucket': bucket, } return render(request, "bucket/detail.html", context) 이러면 ..
AI 본 교육/AI 6주차
2023. 9. 11. 23:19