我有一个基于类的自定义视图
# myapp/views.py
from django.views.generic import *
class MyView(DetailView):
template_name = 'detail.html'
model = MyModel
def get_object(self, queryset=None):
return queryset.get(slug=self.slug)
我想像这样传递slug参数(或其他参数到视图)
MyView.as_view(slug='hello_world')
我是否需要重写任何方法才能做到这一点?
self.kwargs.get('slug', None)