I add a ImageField in my model like

class UserImage(models.Model):
    photo = models.ImageField(upload_to='target_path')
    ....

after I save an image, let's say 'a.jpg', then I want user the filename 'a.jpg' to filter the model, what should I write like:

UserImage.objects.filter(photo.filename='a.jpg')
....
link|improve this question
feedback

1 Answer

Your suggestion would give you an error. Try this instead:

UserImage.objects.filter(photo='a.jpg')

Edit: Django appends the upload_path to the file name. The query should then do something similar, for example:

UserImage.objects.filter(photo='images/users/photos/a.jpg')

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.