Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
209 views
in Technique[技术] by (71.8m points)

python - Django queryset filter for blank FileField?

How do I perform a Django queryset filter looking for blank files in "FileField" fields?

The field isn't null, it has a FileObject in it that doesn't have a file.

question from:https://stackoverflow.com/questions/4771464/django-queryset-filter-for-blank-filefield

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

I was having this issue too, and finally found the solution!

no_files = MyModel.objects.filter(foo='')

This works because internally, the FileField is represented as a local file path in a CharField, and Django stores non-files as an empty string '' in the database.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...