Tags
- 트리
- Tree
- 쟝고
- drf
- Vue
- distinct
- 백트래킹
- outer join
- 통계학
- ORM
- stack
- SQL
- Queue
- migrations
- 이진트리
- 완전검색
- Django
- regexp
- count
- M:N
- update
- Article & User
- 큐
- 그리디
- delete
- create
- 스택
- DB
- 뷰
- N:1
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Notice
Recent Posts
Link
목록httpRequest (1)
데이터 분석 기술 블로그

사용자 입력 데이터를 받아 그대로 출력하는 서버를 만들어 볼게요. 먼저 사용자 입력 데이터를 받는 로직을 throw라고 하고 출력하는 서버를 catch라고 하겠습니다. 1. throw 로직 작성 #urls.py urlpatterns = [ path('throw/', views.throw), ] # views.py def throw(request): return render(request, 'articles/throw.html') {% extends 'articles/base.html' %} {% block content %} Throw {% endblock content %} 2. catch 로직 작성 #urls.py urlpatterns = [ path('catch/', views.catch), ] #..
SW/백엔드
2024. 3. 27. 22:54