尝试在 django admin 中使用 sphinx 搜索。安装django-sphinx。
正如文档所说:
from djangosphinx.admin import SphinxModelAdmin
class MyAdmin(SphinxModelAdmin):
index = 'my_index_name' # defaults to Model._meta.db_table
weights = {'field': 100}
结果我得到了错误global name 'Paginator' is not defined
,修复了它,然后是另一个'list' object has no attribute 'ordered'
不知道该怎么办。
PS Django 1.3 如果重要的话。