我正在编写一个小型博客应用程序,并希望可以通过标题名称和 id 的组合访问其条目。
Expression: ^blog/([\d\w\-_]+)\-(\d+)/$
Example URL: localhost:8000/blog/django-is-awesome-231/
第一部分是通过将博客条目的标题全部转换为小写并将空格和特殊字符替换为-
.
我想知道如何从条目中反转这样的 URL。
{% for entry in entries %}
<li><a href="{% url 'blog.views.display', entry.title entry.id %}">{{ entry.title }}</a></li>
{% endfor %}
但它告诉我没有找到反向匹配。
谢谢,
我只是这样尝试:
def get_mangled_name(self):
""" Returns the mangled name of the entry. """
title = self.title.lower().replace(' ', '-')
title = ''.join(filter(lambda x: x in string.letters, title))
if title.endswith('-'):
title = title[:1]
return '%s-%d' % (title, self.id)
<li><a href="{% url 'blog.views.display' entry.get_mangled_name %}">{{ entry.title }}</a></li>
但它也没有奏效。