Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

object get in djangi

>>> Blog.objects.get(id__exact=14) # Explicit form
>>> Blog.objects.get(id=14) # __exact is implied
>>> Blog.objects.get(pk=14) # pk implies id__exact
Source by docs.djangoproject.com #
 
PREVIOUS NEXT
Tagged: #object #djangi
ADD COMMENT
Topic
Name
7+2 =