rest_framework报错
Django-rest_framework报错
只因为你温柔
如果人生就是一场陷阱,不知何时才能到天明。如果对得起我的生命,我要向全世界证明。
展开
-
drf定义get_queryset报错AssertionError: base_name argument not specified, and could not automatically...
drf定义get_queryset报错-- assert queryset is not None, base_name argument not specified, and could \AssertionError: base_name argument not specified, and could not automatically determine the name from t...原创 2019-09-14 18:52:30 · 1611 阅读 · 1 评论 -
Django REST framewrok使用:__str__ returned non-string (type NoneType)错误
错误在使用Django REST framewrok序列化的时候,访问接口,出现下面的错误:出错原因因为我自己写了User模型,替换了django自带的User,通过继承AbstractUser来完成,并重写了__str__方法,返回了自己的name,并且设置这个name的null==True, 所以导致的这个错误:class UserProfile(AbstractUser): ...原创 2019-09-12 17:52:55 · 271 阅读 · 0 评论 -
Django用rest_framework里的序列化执行反序列化报错argument to reversed() must be a sequence
报错图解决方法, 把主路由的{}改为[], 因为Django2.2.3创建项目是组路由用的{}改好后的原创 2019-07-24 17:19:43 · 472 阅读 · 1 评论 -
AttributeError: Got AttributeError when attempting to get a value for field code on serializer UserR
AttributeError: Got AttributeError when attempting to get a value for field code on serializer UserRegSerializer.The serializer field might be named incorrectly and not match any attribute or key on t...原创 2019-09-19 21:38:43 · 6032 阅读 · 1 评论 -
ImportError at /login/u doesn‘t look like a module path
ImportError at /login/u doesn’t look like a module path错误原因解决办法在下面加个逗号效果图原创 2019-09-21 19:41:55 · 1324 阅读 · 1 评论 -
AssertionError: .validate() should return the validated data
AssertionError: .validate() should return the validated data错误原因解决办法在下面加个逗号效果图原创 2019-09-21 22:18:46 · 969 阅读 · 0 评论 -
序列化类用的serializer报错update() must be implemented
序列化类用的serializer, 修改数据时报错update() must be implemented.源码解决方法重写序列化类里的update方法class ShopCartSerializer(serializers.Serializer):"""购物车序列化类"""# 因为我们模型类设置了unique_together 我们在这里用ModelSerializer# ...原创 2019-09-25 14:42:26 · 2387 阅读 · 2 评论 -
‘CSRFCheck‘ object has no attribute ‘process_request‘
报错解决方案, 把settings下的BasicAuthentication和SessionAuthentication注释掉效果图原创 2019-10-01 20:17:31 · 139 阅读 · 0 评论