0
中的條目是否可以根據某些條件限制models.ForeignKey()字段中的條目?Django - 限制models.ForeignKey()
customer = models.ForeignKey(Customer)
我只需要顯示處於活動狀態的客戶。
中的條目是否可以根據某些條件限制models.ForeignKey()字段中的條目?Django - 限制models.ForeignKey()
customer = models.ForeignKey(Customer)
我只需要顯示處於活動狀態的客戶。
假設你正在使用Django的管理站點,我想你可能希望limit_choices_to選項:
即
customer = models.ForeignKey(Customer, limit_choices_to={'active': True})