Django - 限制 models.ForeignKey() 中的条目
是否可以根据某些条件限制 models.ForeignKey() 字段中的条目?
customer = models.ForeignKey(Customer)
我只需要向客户展示处于活动状态的即可。
Is to possible to limit the entries in models.ForeignKey() field based on some condition?
customer = models.ForeignKey(Customer)
I just need to show the customer who are in active status.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您正在使用 django-admin 站点,我想您可能需要 limit_choices_to 选项:
即
Assuming you're using the django-admin site, I think you might want the limit_choices_to option:
i.e.