Django haystack提供不正确的搜索URL

时间:2012-03-28 14:16:36

标签: python django search django-haystack whoosh

我使用haystack搜索我的django网站,它完美地完成了这一点。 但是在我的结果页面上,链接不起作用。 在我的模板中,我正在使用代码:

<a href="{{ result.object.get_absolute_url }}">{{ result.object.title }}</a>

在我的其他/ models.py中,我已经包含:

def get_absolute_url(self):
    return urlresolvers.reverse('post', args=[self.pk])

我的urls.py看起来像:

from django.conf.urls.defaults import *
from dbe.other.models import *

urlpatterns = patterns('dbe.other.views',
(r"^(\d+)/$", "post"),
(r"^add_comment/(\d+)/$", "add_comment"),
(r"^delete_comment/(\d+)/$", "delete_comment"),
(r"^delete_comment/(\d+)/(\d+)/$", "delete_comment"),
(r"^month/(\d+)/(\d+)/$", "month"),
(r"", "main"),
)

它应链接的网址是:

http://127.0.0.1:8000/other/10/

但它仍然链接到:

http://127.0.0.1:8000/search/?q=searchterm

在shell中会发生这种情况:

>>> from other.models import Post
>>> inst = Post.objects.get(pk=1)
>>> inst.get_absolute_url()
Traceback (most recent call last):
File "<console>", line 1, in <module>
File "/export/mailgrp4_a/sc10jbr/lib/python/django/utils/functional.py", line 55, in _curried
return _curried_func(*(args+moreargs), **dict(kwargs, **morekwargs))
File "/export/mailgrp4_a/sc10jbr/lib/python/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 "/home/cserv2_a/soc_ug/sc10jbr/WWWdev/dbe/../dbe/other/models.py", line 18, in get_absolute_url
return urlresolvers.reverse('post', args=[self.pk])
File "/export/mailgrp4_a/sc10jbr/lib/python/django/core/urlresolvers.py", line 391, in reverse
*args, **kwargs)))
File "/export/mailgrp4_a/sc10jbr/lib/python/django/core/urlresolvers.py", line 337, in reverse
"arguments '%s' not found." % (lookup_view_s, args, kwargs))
NoReverseMatch: Reverse for 'post' with arguments '(1,)' and keyword arguments '{}' not found.

由于

1 个答案:

答案 0 :(得分:6)

您应该在模型中定义get_absolute_url()方法。

例如:

from django.core import urlresolvers

class Widget(models.Model):
    # fields ...
    def get_absolute_url(self):
        return urlresolvers.reverse('widget_detail', args=[self.pk])

这假设小部件详细信息视图的name of the url为:'widget_detail'