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

Categories

I want to save result of post.get_absolute_url() in my Django model as Field.

def get_absolute_url(self):
    return reverse('post_detail', args=[self.publish.year,
                       self.publish.month, self.publish.day, self.slug])

For example: absolute_url = models.CharField(...'result of post.get_absolute_url()'...).

Is there any way to do this? Thanks.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.2k views
Welcome To Ask or Share your Answers For Others

1 Answer

Override the models save method. This will be run every time the model is saved.

class ExampleModel(models.Model):
    absolute_url = models.CharField(max_length=255)

    def save(self, *args, **kwargs):
        self.absolute_url = self.get_absolute_url()
        super().save(*args, **kwargs)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...