0

我想获取模板中搜索结果的数量,但 Django Haystack 的 SearchView 只提供

context = {
'query': self.query,
'form': self.form,
'page': page,
'paginator': paginator,
'suggestion': None,
}

我注意到 SearchView 定义

def extra_context(self):
"""
Allows the addition of more context variables as needed.

Must return a dictionary.
"""
return {}

但是有没有办法在 urls.py 中做到这一点,因为我对那里的东西很满意(不必在 views.py 中做任何工作)。

这是我的 urls.py:

urlpatterns += patterns('haystack.views',
    url(r'^search/', 
        login_required(lambda request: SearchView(
        searchqueryset=SearchQuerySet().filter(author=request.user).order_by('-pub_date'),
        form_class=SearchForm
    )(request)), name='haystack_search'),
)

感谢您的任何建议!

4

1 回答 1

0

在您的模板中,您应该这样做{{ searchqueryset.count }},然后不需要urls.py进一步混乱。

于 2013-06-27T04:29:38.213 回答