gpt4 book ai didi

Django - 如何在 'NOT IN' 中指定 'limit_choices_to' ?

转载 作者:行者123 更新时间:2023-12-04 11:15:46 27 4
gpt4 key购买 nike

如何在“limit_choices_to”中指定“NOT IN”?我只想获取所有客户详细信息,除非他们处于一种特定状态。

customer = models.ForeignKey(Customer, limit_choices_to={'status__in': ['active']}) 

最佳答案

只是使用 Q 对象而不是字典。

limit_choices_to = ~models.Q(status__in = ['xxxxxx']))

关于Django - 如何在 'NOT IN' 中指定 'limit_choices_to' ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4268672/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com