티스토리 뷰

상황

장고 view에서 cleaned_data를 이용하기 위해서 is_valid()함수를 쓰려고 했다.

실행시키자 'form' form object has no attribute is_valid 에러가 발생. 

에러가 발생했을 때 캡쳐를 해 두지 않아서 사진은 없다.


찾아본 방법들

첫 번째 방법

stackoverflow.com/questions/17512506/django-attributeerror-form-has-no-attribute-is-valid

 

Django: AttributeError form has no attribute 'is_valid'

I'm having an issue saving comments for a blog app I'm writing in Django. The error is: AttributeError at /blog/123456/ 'comment' object has no attribute 'is_valid' My models.py: from django.db i...

stackoverflow.com

아마 위의 링크를 통한 해결을 많이 할 것이다.

is_valid 메소드는 form에서만 사용할 수 있다는 것. 하지만 질문자는 model 함수와 is_valid를 사용해서 에러가 떴던 것이다.

 

두 번째 방법

stackoverflow.com/questions/44686952/django-attribute-error-form-object-has-no-attribute-is-valid-error

 

Django Attribute Error - form object has no attribute is_valid error

I keep getting an error saying that my BundleForm has no attribute is_valid. I double and triple checked and my BundleForm is associated with a model, specifically my Bundle model. I can't figure...

stackoverflow.com

이걸로 해결했다.

해결책인 즉,,,, is_vaild가 아니라 is_valid였던 것.

스펠링이 틀렸다.

지금 생각해도 허무하다.

하지만 질문자는 외국인같은데도 틀린걸 보면 나만 그런건 아니라고 느낌ㅋㅋ

반응형
댓글