You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
这样写会报错:
django.core.exceptions.ImproperlyConfigured: IndexView is missing a QuerySet. Define IndexView.model, IndexView.queryset, or override IndexView.get_queryset().
需要加个 model = Post 就好了。
The text was updated successfully, but these errors were encountered:
class IndexView(CommonViewMixin, ListView):
这样写会报错:
django.core.exceptions.ImproperlyConfigured: IndexView is missing a QuerySet. Define IndexView.model, IndexView.queryset, or override IndexView.get_queryset().
需要加个 model = Post 就好了。
The text was updated successfully, but these errors were encountered: