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