Tags
- 완전검색
- 그리디
- Article & User
- migrations
- Queue
- DB
- count
- N:1
- 백트래킹
- Tree
- 트리
- M:N
- 스택
- drf
- 큐
- create
- stack
- update
- Vue
- delete
- outer join
- 통계학
- ORM
- distinct
- 쟝고
- 뷰
- 이진트리
- Django
- regexp
- SQL
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Notice
Recent Posts
Link
목록catch (1)
데이터 분석 기술 블로그
Django에 대하여(6)_form 활용
사용자 입력 데이터를 받아 그대로 출력하는 서버를 만들어 볼게요. 먼저 사용자 입력 데이터를 받는 로직을 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), ] #..
백엔드
2024. 3. 27. 22:54