ฉันมีมุมมองตามคลาสที่กำหนดเอง
# 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)