Django - 如何指定“NOT IN”在“limit_choices_to”中?
如何在“limit_choices_to”中指定“NOT IN”?我只想获取所有客户详细信息,除非他们处于一种特定状态。
customer = models.ForeignKey(Customer, limit_choices_to={'status__in': ['active']})
How to specify 'NOT IN' in 'limit_choices_to'? I just want to fetch all the customer details except if they are in one particular status.
customer = models.ForeignKey(Customer, limit_choices_to={'status__in': ['active']})
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只是使用 Q 对象而不是字典。
Just used the Q object instead of a dictionary.