本文主要是介绍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 nothave 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.的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!