Django exists() versus DoesNotExist

33,750

Solution 1

if User.objects.get(pk=id).exists()

This won't work, so the question is pretty easy to answer: This way is inferior to the ways which do work :-)

I guess you actually didn't make a Minimal Complete Verifiable Example and so missed the error when you posted un-verified code.


So instead, I suppose you are asking about the difference between:

  • QuerySet.exists() when you have a QuerySet (e.g. from a filter operation).

    For example:

  if User.objects.filter(pk=id).exists():
      # ... do the things that need that user to exist
  try:
      user = User.objects.get(pk=id)
  except User.DoesNotExist:
      # ... handle the case of that user not existing

The difference is:

  • The QuerySet.exists method is on a queryset, meaning you ask it about a query (“are there any instances matching this query?”), and you're not yet attempting to retrieve any specific instance.

  • The DoesNotExist exception for a model is raised when you actually attempted to retrieve one instance, and it didn't exist.

Use whichever one correctly expresses your intention.

Solution 2

You can find more info in docs: about exists(),but exists() works only for QuerySet

Returns True if the QuerySet contains any results, and False if not. This tries to perform the query in the simplest and fastest way possible, but it does execute nearly the same query as a normal QuerySet query.

exists() is useful for searches relating to both object membership in a QuerySet and to the existence of any objects in a QuerySet, particularly in the context of a large QuerySet.

But ObjectDoesNotExist works only with get().

Also you can try another approach:

user = User.objects.filter(id=2)
if user:
    # put your logic
    pass

Solution 3

in django model, if you gonna use model.objects.get() if it wasn't exist it raise an error. in that case you can use DoesNotExist along with except:

try:
  val = Model.objects.get(pk=val) # if nothing found it will raise an exception
exception:
  you can trace an exception without mentioning anything on top.
(or)
exception ObjectDoesNotExist:
  # it will come here if exception is DoesNotExist

Solution 4

For Django version 2.0.6, you can do the following, and it will work:

if Model.objects.filter(my_id=objectid).exists():
  myobject = get_object_or_404(Model, my_id=objectid)
  context = {'myobject': myobject}
  return render(request, self.template_name, context)

You can get more info here: https://docs.djangoproject.com/en/2.1/ref/models/querysets/

Solution 5

It's my understanding that you're asking whether to use if statements or try catch on your code. I personally prefer to avoid using try catch, a think it's an ugly syntax, when I do want to raise an exception, I use a python keyword raise, to me, it makes the code cleaner.

Code example:

user = User.objects.filter(id=2)
if not user:
   raise ObjectDoesNotExist
Share:
33,750
Dato Gachechiladze
Author by

Dato Gachechiladze

Updated on May 28, 2020

Comments

  • Dato Gachechiladze
    Dato Gachechiladze almost 4 years

    I have some questions about django exists() and DoesNotExist exception.

    Example code:

    id = 1
    # first
    if User.objects.get(pk=id).exists():
        # my logic
        pass
    # second
    try:
        User.objects.get(pk=id)
        # my logic
        pass
    except User.DoesNotExist:
        return 0
    

    I often use get() method. Which practice is better? Which code is better? The first or second?