get_absolute_url() code example
Example 1: str django
def __str__(self):
return self.name
Example 2: get_absolute_url django
def get_absolute_url(self):
from django.core.urlresolvers import reverse
return reverse('', kwargs={'pk': self.pk})
Example 3: get absolute url
from django.urls import reverse
def get_absolute_url(self):
return reverse('your:url', kwargs={'pk': self.pk})
Example 4: get_absolute_url method
First of all, when it comes to web development you really want to avoid hard coding paths in your templates. The reason for this is that paths might change, and it will be a hassle to go through all your HTML and templates to find every single URL or path and update it manually. It makes your code much harder to maintain.
The solution to this is to define functions that return the URL instead. This is where get_absolute_url() comes into the picture.