NoReverseMatch for get_absolute_url()新手问题

时间:2011-04-27 18:35:29

标签: python django url

刚刚开始使用django并且与get_absolute_url功能混淆。

当我尝试访问对象的url时,我收到NoReverseMatch错误。这是堆栈跟踪

$ python manage.py shell
Python 2.6.6 (r266:84292, Sep 15 2010, 15:52:39) 
[GCC 4.4.5] on linux2
Type "help", "copyright", "credits" or "license" for more information.
(InteractiveConsole)
>>> from food.models import *
>>> r = Restaurant.objects.get(pk=1)
>>> r
<Restaurant: East Side Marios>
>>> r.get_absolute_url()
Traceback (most recent call last):
  File "<console>", line 1, in <module>
  File "/usr/local/lib/python2.6/dist-packages/django/utils/functional.py", line 55, in _curried
    return _curried_func(*(args+moreargs), **dict(kwargs, **morekwargs))
  File "/usr/local/lib/python2.6/dist-packages/django/db/models/base.py", line 887, in get_absolute_url
    return settings.ABSOLUTE_URL_OVERRIDES.get('%s.%s' % (opts.app_label, opts.module_name), func)(self, *args, **kwargs)
  File "/usr/local/lib/python2.6/dist-packages/django/db/models/__init__.py", line 35, in inner
    return reverse(bits[0], None, *bits[1:3])
  File "/usr/local/lib/python2.6/dist-packages/django/core/urlresolvers.py", line 391, in reverse
    *args, **kwargs)))
  File "/usr/local/lib/python2.6/dist-packages/django/core/urlresolvers.py", line 337, in reverse
    "arguments '%s' not found." % (lookup_view_s, args, kwargs))
NoReverseMatch: Reverse for 'food.views.restaurant_details' with arguments '()' and keyword arguments '{'restaurant_id': ['1']}' not found.

这是我到目前为止所拥有的

服务器/ urls.py

from django.conf.urls.defaults import *

from django.contrib import admin
admin.autodiscover()

urlpatterns = patterns('',

  # ADMIN
  (r'^admin/doc/', include('django.contrib.admindocs.urls')),
  (r'^admin/', include(admin.site.urls)),

  # Restaurants
  (r'^restaurants/$', 'food.views.restaurant_index'),
  (r'^restaurants/(\d+)/$', 'food.views.restaurant_details'),
)

服务器/食品/ models.py

class Restaurant(models.Model):
  name        = models.CharField(max_length=50, unique=True)
  description = models.TextField()
  website     = models.URLField(verify_exists=True)
  def __unicode__(self):
    return self.name
  @models.permalink
  def get_absolute_url(self):
    return ('food.views.restaurant_details', (), {'restaurant_id': [str(self.id)]})

服务器/食品/ views.py

from food.models import *
from django.shortcuts import render_to_response, get_object_or_404

# Restaurant

def restaurant_index(request):
    restaurant_list = Restaurant.objects.all()
    return render_to_response('food/restaurant/index.html', {'restaurant_list': restaurant_list})

def restaurant_details(request, restaurant_id):
    restaurant = get_object_or_404(Restaurant, pk=restaurant_id)
    menu_list  = Menu.objects.filter(restaurant=restaurant_id)
    return render_to_response('food/restaurant/detail.html', {'restaurant': restaurant, 'menu_list': menu_list})

restaurant_index的网站呈现罚款,当然,任何餐馆的网址都是空字符串

模板

{% if restaurant_list %}
  <ul>
    {% for restaurant in restaurant_list %}
      <li><a href="{{ restaurant.get_absolute_url }}">{{ restaurant }}</a></li>
    {% endfor %}
  </ul>
{% else %}
  <p>No restaurants are currently listed.</p>
{% endif %}

HTML

<ul>
  <li><a href="">East Side Marios</a></li>
</ul>

2 个答案:

答案 0 :(得分:3)

(r'^restaurants/(\d+)/$', 'food.views.restaurant_details'),

您的网址格式正在将restaurant_id捕获为非命名组,因此您需要提供restaurant_id作为位置参数,或更改网址格式以捕获restaurant_id作为命名组

将网址格式更改为此

(r'^restaurants/(?P<restaurant_id>\d+)/$', 'food.views.restaurant_details'),

或从get_absolute_url

返回
return ('food.views.restaurant_details', (str(self.id),), {})

答案 1 :(得分:3)

除了Imran提供的解决方案之外,您可能还想查看命名的URL模式:

<强> urls.py

urlpatterns = patterns('',
  url(r'^restaurants/(\d+)/$', 'food.views.restaurant_details', name='restaurant_detail'),
)

<强> restaurant_index.html

<a href="{% url restaurant_detail restaurant.id%}">{{ restaurant }}</a>

这样,您不必绑定视图的功能名称,并且可以更轻松地切换到通用视图。