devgraphy / airsm-django-restapi

AIRSM 프로젝트의 REST API 기반 Back-end
0 stars 0 forks source link

TypeError: object of type 'NoneType' has no len() #28

Closed devgraphy closed 3 years ago

devgraphy commented 3 years ago
obj = Member.objects.get(phone=p)
if(len(obj.password) > 1):
devgraphy commented 3 years ago

obj의 password 속성값에 NULL값이 들어가있었다. 이를 string의 길이를 구하기 위한 len을 적용하였기 때문에 에러가 발생하였다.

그래서 model의 password 속성을 null을 허용하지 않도록 하였고 default로 ""(공백)을 주도록 하였다.

회원가입 시에는 무조건 4자 이상의 입력을 받게 되고 문자열 길이가 1이 넘는지 아닌지로 회원가입 여부를 확인하게 된다.