7
Chế độ xem dựa trên lớp Django: Làm cách nào để chuyển các tham số bổ sung cho phương thức as_view?
Tôi có một chế độ xem dựa trên lớp tùy chỉnh # 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) Tôi muốn chuyển tham số slug (hoặc các tham số khác cho chế độ xem) như thế này MyView.as_view(slug='hello_world') Tôi …