通过使用下面的代码行,我可以从名为'11'的数据库中的表中获取值。
queryset = JobSeekers.objects.using("11").all()
现在,我想传递变量而不是静态别名。 (这里我使用的是在AuthBackends.py中设置的全局变量“ IdentificationNumber”)
class GetCanidatesList(generics.ListAPIView):
authorizedID = str(AuthBackends.IdentificationNumber)
queryset = JobSeekers.objects.using(authorizedID).all()
serializer_class = CandidatesSerializer
name = 'candidates-list'
我是Django的新手。那可能吗?请帮我。 预先感谢。