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.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…