Notice
Recent Posts
Recent Comments
Tags
- ViewData
- asp.net Select
- 바코드 생성하기
- 타임피커
- javascript 바코드스캔
- javascript 바코드 생성
- ViewBag
- 하드 마이그레이션
- 강제이동
- ASP.Net Core 404
- 바코드 스캔하기
- javascript redirection
- django 엑셀불러오기
- SSD 복사
- asp.net core Select
- 파일업로드 체크
- 맥 오라클설치
- 파일업로드 유효성체크
- asp.net dropdownlist
- jquery 바코드생성
- 말줄임표시
- jquery 바코드
- Mac Oracle
- TempData
- XSS PHP
- XSS방어
- 하드 윈도우 복사
- php 캐쉬제거
- javascript 유효성체크
- 404에러페이지
웹개발자의 기지개
[Django] You called this URL via POST, but the URL doesn't end in a slash and you have APPEND_SLASH set. Django can't redirect to the slash URL while maintaining POST data. 본문
python/Django
[Django] You called this URL via POST, but the URL doesn't end in a slash and you have APPEND_SLASH set. Django can't redirect to the slash URL while maintaining POST data.
http://portfolio.wonpaper.net 2023. 10. 22. 20:30
You called this URL via POST, but the URL doesn't end in a slash and you have APPEND_SLASH set. Django can't redirect to the slash URL while maintaining POST data. Change your form to point to 127.0.0.1:8000/memberShip/join/ (note the trailing slash), or set APPEND_SLASH=False in your Django settings.
런타임 오류로 흔히 만날수 있는 에러메세지이다.
APPEND_SLASH 가 설정상으로 디폴트로 True 가 되어 있는데, URL 의 마지막에 /가 없어서 경로가 안맞아서 그렇다.
form.action = "/memberShip/login/";
형태로 마지막에 / 를 넣어서 해결~
'python > Django' 카테고리의 다른 글
[Django] 다른 App 의 Model을 Import 할려고 할때 (0) | 2023.10.31 |
---|---|
[Django] in a frame because it set 'x-frame-options' to 'deny'. (0) | 2023.10.28 |
[Django] 리눅스서버상에서 Django 환경 구축하기 - SQLite 도 설치 (0) | 2023.06.12 |
[Django] Template Filter 만들기 - Custom Template Filter (0) | 2023.05.21 |
[Django] views.py 에서 다양한 변수값들을 html 로 넘기는 방법 (0) | 2023.05.21 |
Comments