일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 진짜영웅
- everybody wants you
- 봉준호감독통역사
- 우한
- 미중
- 웨일즈
- 필리핀사망
- 창궐
- parasite
- cnn
- 우한코로나바이러스
- 어서와한국은처음이지
- 우한코로나
- 우한 코로나
- 정은경 본부장님
- Bolton
- 조현병
- sharonchoi
- 치앙마이
- 신종코로나
- 중국외교부
- 코로나
- 최성재
- wuhan
- 코로나19
- 봉준호감독통역
- red hearse
- 전염병
- 확진자수
- 코로나바이러스
- Today
- Total
오지's blog
django.utils.datastructures.MultiValueDictKeyError: 발생 본문
Traceback (most recent call last): File "C:\workspaces\foreign\venv\lib\site-packages\django\core\handlers\exception.py", line 47, in inner response = get_response(request) File "C:\workspaces\foreign\venv\lib\site-packages\django\core\handlers\base.py", line 179, in _get_response response = wrapped_callback(request, *callback_args, **callback_kwargs) File "C:\workspaces\foreign\config\sender\views.py", line 16, in new_request req.sender_name = request.POST['sender_name'] File "C:\workspaces\foreign\venv\lib\site-packages\django\utils\datastructures.py", line 78, in __getitem__ raise MultiValueDictKeyError(key) django.utils.datastructures.MultiValueDictKeyError: 'sender_name'
원인: 모델의 항목과 html의 항목이 일치 하지 않았음
model.py
class Sender(models.Model):
sender_name = models.CharField(max_length=256)
created_at = models.DateTimeField(auto_now_add=True)
new.html
<form action="" method="POST" >
{% csrf_token %}
<input type="text" name="sender_item">
<input type="submit" value="접수하기">
</form>
'개발노트 > Python' 카테고리의 다른 글
python 면접 준비 v1 (0) | 2021.01.15 |
---|---|
타이타닉 데이터 분석을 kaggle에 제출하고 나서.. (0) | 2021.01.06 |
장고(django)에서 reverse와 redirect의 차이 (0) | 2020.11.11 |
장고(django)를 이용한 게시판 개발(CBV - Class-BasedView) (0) | 2020.11.06 |
RuntimeError: The current Numpy installation .... fails to pass a sanity check due to a bug in the windows runtime. See this issue for more information: https://tinyurl.com/y3dm3h86 (0) | 2020.11.05 |