我在django中的URL具有%...
。我该如何改变?起初这还可以,但是在我今天的某个时候突然改变了。我的观点,模型和URL如下:
class Rant(UUIDModel, TitleSlugDescriptionModel, TimeStampedModel, models.Model)
categories = models.ManyToManyField(Category)
def slugify_function(self, content):
return content.replace("_", "-").lower()
def get_absolute_url(self):