我是django和haystack的新手。我遵循了haystack网站上提供的示例教程,并弄清楚了如何执行基本搜索。我可以获取输出值,但是页面无法正确显示。 Haystack的默认格式为searchForm
,但在我的情况下,默认格式为ModelSearchForm
。我不知道为什么以及如何更改它。
这是我的search.html页面中的表格。
<form method="get" action=".">
<table>
{{ form.as_table }}
<tr>
<td> </td>
<td>
<input type="submit" value="Search" class="btn btn-default">
</td>
</tr>
</table>
</form>
在我的搜索页面中,haystack总是向我显示默认表格。它具有预定义的标签,它始终向我显示一个模型名称和一个复选框。我无法确定从何处显示这些值以及如何进行修改。
我的search_index.py文件
import datetime
from haystack import indexes
from signups.models import SignUp
class SignUpIndex(indexes.SearchIndex, indexes.Indexable):
text = indexes.CharField(document=True, use_template=True)
first_name = indexes.CharField(model_attr='first_name')
last_name = indexes.CharField(model_attr='last_name')
email = indexes.CharField(model_attr='email')
def get_model(self):
return SignUp
def index_queryset(self, using=None):
"""Used when the entire index for model is updated."""
return self.get_model().objects.all()
我的model.py文件
from django.db import models
from django.utils.encoding import smart_unicode
class SignUp(models.Model):
first_name = models.CharField(max_length = 120,null = True, blank= True)
last_name = models.CharField(max_length = 120,null = True, blank= True)
email = models.EmailField()
timestamp = models.DateTimeField(auto_now_add = True, auto_now = False)
update = models.DateTimeField(auto_now_add = False, auto_now = True)
def __unicode__(self):
return smart_unicode(self.email)
我希望添加一个图像以更有效地进行交流,但由于声誉下降而无法通信。 :(
最佳答案
您可以在urls.py中更改表单类和视图类。
就像是:
from haystack.views import SearchView, search_view_factory
from haystack.forms import HighlightedModelSearchForm
urlpatterns = patterns('',
# Examples:
# url(r'^$', 'mamotwo.views.home', name='home'),
# url(r'^blog/', include('blog.urls')),
url(r'^search/', include('haystack.urls')),
url(r'^mysearch/$', search_view_factory(view_class=SearchView, form_class=HighlightedModelSearchForm), name='mysearch'),
url(r'^admin/', include(admin.site.urls)),
)
但是我也是干草堆的新手。如果您检查此代码haystack demo或此视频haystack demo video
关于python - 在django-haystack中更改默认 View ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/24536903/