-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
2019.09.16 code review #1
Comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
related_name은 category로 하는게 맞는 것 같습니다 :)
실 배포시에는 print는 빼는게 좋습니다.
one to one field가 나을 것 같습니다!!
필터 사용시 null=False가 아니라 color_source=null
filter() 자체가 쿼리셋이므로 이후 .all()할 필요 없습니다. 또한 여기 코드에서 queryset을 안쓰는 것 같은데 그 이유는 모든 코드가 CroppedImage기준으로 작성되어있어서 그렇습니다. CroppedImage기준으로 queryset을 사용하면, queryset = CroppedImage.objects.filter(categories__handle_source__isnull=True)처럼 사용할 수 있습니다. ('_' 두개로 한단계씩 들어갈 수 있음: 필터 문법)
The text was updated successfully, but these errors were encountered: