Tags
- stack
- Article & User
- distinct
- count
- 쟝고
- Queue
- drf
- DB
- M:N
- SQL
- update
- migrations
- 트리
- 뷰
- create
- delete
- 완전검색
- 스택
- outer join
- regexp
- 큐
- 백트래킹
- N:1
- Django
- ORM
- 통계학
- 그리디
- Tree
- Vue
- 이진트리
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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)
데이터 분석 기술 블로그
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/64feX/btsF9JDjzhP/AT9xm8C7uKmwe59x178gKK/img.png)
사용자 입력 데이터를 받아 그대로 출력하는 서버를 만들어 볼게요. 먼저 사용자 입력 데이터를 받는 로직을 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