Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
115 views
in Technique[技术] by (71.8m points)

python - access field of foregin key in django model function

Let's say I have the following models.py:

from django.db import models

class Person(models.Model):
    name = models.CharField(max_length=100)
    father = models.ForeignKey(Person, on_delete=models.CASCADE)

And I need to add a function fullName(self) that will return a string, the person's name + space + the person's father name. What is the correct syntax to do this?

I tried the following but it doesn't work

from django.db import models

class Person(models.Model):
    name = models.CharField(max_length=100)
    father = models.ForeignKey(Person, on_delete=models.CASCADE)
    def fullName(self):
        return self.name + " " + self.father.name

pylint says: instance of 'ForeginKey' has no 'name' member


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...