如何在apiview类中使用(别名)在queryset中设置变量的值

时间:2018-09-20 10:05:50

标签: django django-rest-framework django-views

通过使用下面的代码行,我可以从名为'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的新手。那可能吗?请帮我。 预先感谢。

0 个答案:

没有答案