标签: python django listview
我的观点:
class MediaList(ListView): template_name = "media_list.html" queryset = Media.objects.all() paginate_by = 2 context_object_name = "files"
当我这样做时,会出错__init__() takes exactly 1 argument (2 given)。
__init__() takes exactly 1 argument (2 given)
这里有什么问题?