1.['ManagementForm data is missing or has been tampered with']
在html中不仅要加入{% csrf_token%},还要加入{{ formset.management_form }}
2.The view rbac.views.menu.distribute_permissions didn't return an HttpResponse object. It returned None instead
未设置return响应
3.ModelForm has no model class specified.
modelform里未设置class Meta:
如果设置了,就不会报错了
4.'WSGIRequest' object has no attribute 'breadcrumb'
中间件被隐藏了,不能隐藏,不然会报错
5.no such table: django_session
使用DRF的时候,网址输入后,跳出此报错。既然要从Web服务器端来记录用户信息,
那么一定要有存放用户session id对应信息的地方才行。
所以,我们需要创建django_session表。使用migrate即可。
6.tuple object is not callable
args=(11,) 写成了 args(11,)