64
You can get it from self.kwargs['pk']
.
I’m not sure why you want to, though, since the superclass already gets the Book corresponding to that pk – that’s the whole point of a DetailView.
8
class MyDetail(DetailView):
model = Book
template_name = 'book.html'
def get_context_data(self, **kwargs):
context = super(MyDetail, self).get_context_data(**kwargs)
context['something'] =Book.objects.filter(pk=self.kwargs.get('pk'))
return context
- [Django]-Django – how to specify a database for a model?
- [Django]-Chained method calls indentation style in Python
- [Django]-Add inline model to django admin site
7
self.kwargs['pk']
it doesn’t work in Django 2.2
in DetailView
self.object is the object that this view is displaying.
So, to access the object’s fields like
id
orpk
justself.object.id
orself.object.pk
So, The answer in Django 2.2 can be like:
class MyDetail(DetailView):
model = Book
template_name = 'book.html'
def get_context_data(self, **kwargs):
context = super().get_context_data(**kwargs)
context['something'] = Book.objects.filter(pk=self.object.pk) # <<<---
return context
- [Django]-Docker app server ip address 127.0.0.1 difference of 0.0.0.0 ip
- [Django]-Django 1.11 TypeError context must be a dict rather than Context
- [Django]-Display only some of the page numbers by django pagination
5
In get_context_data you already have the object in self.object (and you can do self.object.pk). Here’s what happens upstream in the class hierarchy (DetailView inherits from BaseDetailView):
class BaseDetailView(SingleObjectMixin, View):
"""
A base view for displaying a single object
"""
def get(self, request, *args, **kwargs):
self.object = self.get_object()
context = self.get_context_data(object=self.object)
return self.render_to_response(context)
Reading Django source code to understand stuff is incredibly easy.
And by the way, I am not sure you can always rely on the fact that kwargs has a ‘pk’ key.
- [Django]-">", "<", ">=" and "<=" don't work with "filter()" in Django
- [Django]-Logging requests to django-rest-framework
- [Django]-Chaining multiple filter() in Django, is this a bug?
3
In addition to getting it from self.kwargs
as Daniel Roseman suggested, you can use self.get_object().pk
, for example if you change your URL identifier from pk
to, say, slug
or something.
- [Django]-Django REST framework – limited queryset for nested ModelSerializer?
- [Django]-Detect django testing mode
- [Django]-Django – Getting last object created, simultaneous filters
3
you can simply get it in the ‘get’ method, like this:
def get_context_data(self, request, pk, *args, **kwargs):
context = super(MyDetail, self).get_context_data(**kwargs)
context['something'] =Book.objects.filter(pk=self.kwargs.get('pk'))
return context
- [Django]-How to access outermost forloop.counter with nested for loops in Django templates?
- [Django]-How to use schemas in Django?
- [Django]-Django Password Generator
1
def get_context_data(self, request, pk, *args, **kwargs):
context = super(MyDetail, self).get_context_data(**kwargs)
context['something'] =Book.objects.filter(pk=self.kwargs.get('pk'))
return context
Filter returns a query set that matches the lookup parameter (pk). Since ‘pk’ is unique, it would return the same results as get but for performance issues, ideally you’d want to use the get method to return one single object:
def get_context_data(self, request, pk, *args, **kwargs):
context = super(MyDetail, self).get_context_data(**kwargs)
context['something'] =Book.objects.get(pk=self.kwargs.get('pk'))
return context
- [Django]-How can I return HTTP status code 204 from a Django view?
- [Django]-Passing objects from Django to Javascript DOM
- [Django]-How can I access environment variables directly in a Django template?