강의

멘토링

커뮤니티

Inflearn Community Q&A

common's profile image
common

asked

Django with Python: Introduction

C: Implementing post registration

create.html

Written on

·

352

0

안녕하세요 선생님! 장고 입문자로서 이번 강의를 통해 정말 많이 배우고 있습니다. 감사합니다!

궁금한 사항은 다음과 같습니다.

create.html 에서 <form action="{% url 'restaurnat-create' %}" method="post"> 로 실행을 시키면 아래와 같은 오류가 발생합니다.

TypeError: 'set' object is not reversible

그래서 %를 제외하고 { url 'restaurnat-create' }로 변경하면 오류없이 페이지뷰는 나오고 등록은 불가능합니다. 혹시 어떻게 변경하면 되는지 알 수 있을까요...?

pythondjango

Answer 1

0

common님의 프로필 이미지
common
Questioner

urls.py 내 urlpatterns 에 { } 를 사용하는 바람에 오류가 생겼네요! []로 변경하여 해결했습니다!

common's profile image
common

asked

Ask a question