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