Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

basically just verify if an object exists and return the object. then based on that perform actions. I'm wondering whats the right way to do it without returning a 404?

try:
    listing = RealEstateListing.objects.get(slug_url = slug)
except:
    listing = None

if listing:
share|improve this question

2 Answers

up vote 31 down vote accepted

I would not use the 404 wrapper if you aren't given a 404. That is misuse of intent. Just catch the DoesNotExist, instead.

try:
    listing = RealEstateListing.objects.get(slug_url=slug)
except RealEstateListing.DoesNotExist:
    listing = None
share|improve this answer
+1: I'd use this instead of 404 wrapper too. – Tiago Mar 12 '09 at 19:25
+1: Yes, this is a better solution than the accepted one, if you don't want the 404. – Carl Meyer Mar 13 '09 at 18:25
yap, this seems to be the better solution – Rasiel Mar 26 '09 at 5:10

You can also do

if not RealEstateListing.objects.filter(slug_url=slug).exists():
    do stuff... 

of course the try: except: block is the prefered method :)

share|improve this answer
3  
.exists() is faster: docs.djangoproject.com/en/dev/ref/models/querysets/#exists – fjsj Jan 4 '12 at 23:12
4  
this is the better way and should have the answer – Jharwood Oct 30 '12 at 17:23
I like this more than the try/except way too – robbyt Dec 19 '12 at 19:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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