请告诉我如何链接和访问这些字段:从“客户”表的“属性”表中获取"location“和”building_type“。(我希望能够从”属性“表中获取”客户“表的”location“和”building_type“信息)
class Property(models.Model):
location = models.CharField(choices=Property_Location, max_length=120)
building_type= models.CharField(choices=Property_Type, max_length=120)
class Client(models.Model):
first_name = models.CharField(max_length=120)
last_name = models.CharField(max_length=120)
phone = models.IntegerField()
location=()
building_type =()
我试着对这两种情况都使用PK & related_name,但结果只显示了
location和building_type字段的“location”
1条答案
按热度按时间qnyhuwrf1#
您可以简单地在引用
Property
模型的Client
模型中使用ForeignKey
,如下所示:您可以根据需要在
ForeignKey.on_delete
上设置任何选项。