我是靠谱客的博主 勤恳哈密瓜,最近开发中收集的这篇文章主要介绍AssertionError:` base_name` argument not specified...... a not have a` .queryset` attribute.,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

一转眼,erp系统又学了好些天了 哈哈哈哈

今天又遇到了个新问题 和大家一起分享一下!

问题描述

AssertionError: base_name argument not specified, and could not 
automatically determine the name from the viewset, as it does not
 have a .queryset attribute.

原因分析

这个问题是在重写分页的方法之后,在进行URL注册时所报的错。

views中去掉了queryset属性,改用get_queryset()方法,此时basename这个值必须补充!! 

解决方法 

router注册URL时,补充basename即可。

另外一种解决方案是在重写get_queryset前设置好queryset的默认值

queryset = DeptModel.objects.all()
serializer_class = DeptSerializer
pagination_class = GlobalPagination

 

最后

以上就是勤恳哈密瓜为你收集整理的AssertionError:` base_name` argument not specified...... a not have a` .queryset` attribute.的全部内容,希望文章能够帮你解决AssertionError:` base_name` argument not specified...... a not have a` .queryset` attribute.所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(61)

评论列表共有 0 条评论

立即
投稿
返回
顶部