我有一个基本的观点:
class MyView(View):
def post(self, request, *args, **kwargs):
return HttpResponseRedirect(reverse('list'))
和我的urlconf
url(r'^my-view/$', MyView.as_view(), name='my_view'),
但我得到了AttributeError type object 'MyView' has no attribute 'as_view'
。
是什么导致这种情况?