在route.register没有base_name喜欢的情况下使用的时候;
route.register(r'codes', SmsCodeViewset)
发生错误;
AssertionError: basename argument not specified, and could not automatically determine the name from the viewset, as it does not have a .queryset attribute.
我用route.register(r'codes', SmsCodeViewset, bose_name="")的时候没有报错,请问为什么?