简体   繁体   English

如何使用QuerySets和MySql“全文搜索”在多个字段中进行Django搜索?

[英]How can I make Django search in multiple fields using QuerySets and MySql “Full Text Search”?

I'm a Django novice, trying to create a " Search " form for my project using MySql with MyISAM engine. 我是Django新手,试图使用带有MyISAM引擎的MySql为我的项目创建一个“ 搜索 ”表单。 So far, I manage to get the form to work, but Django doesn't seem to search all fields the same way. 到目前为止,我设法让表单工作,但Django似乎不会以相同的方式搜索所有字段。 Results are random. 结果是随机的。 Exemple: search in region returns no result or worst search in description works fine while howtogetin doesn't seem to apply.. 例子:搜索region返回没有结果或最糟糕的搜索description工作正常,而howtogetin似乎不适用..

Here is my model: 这是我的模型:

class Camp(models.Model):
    owner = models.OneToOneField(User)
    name = models.CharField(max_length=100)
    description = models.TextField()
    address1 = models.CharField(max_length=128)
    address2 = models.CharField(max_length=128)
    zipcode = models.CharField(max_length=128)
    region = models.CharField(max_length=128)
    country = models.CharField(max_length=128)
    phone = models.CharField(max_length=60)
    howtogetin = models.TextField()

    def __str__(self):
        return self.name

Here is my view: 这是我的观点:

def campsearch(request):
if request.method == 'POST':
    form = CampSearchForm(request.POST)
    if form.is_valid():
        terms = form.cleaned_data['search']
        camps = Camp.objects.filter(
            Q(name__search=terms)|
            Q(description__search=terms)|
            Q(address1__search=terms)|
            Q(address2__search=terms)|
            Q(zipcode__search=terms)|
            Q(region__search=terms)|
            Q(country__search=terms)|
            Q(howtogetin__search=terms)
            )
        return render(request, 'campsearch.html', {'form':form, 'camps':camps})
else:
    form = CampSearchForm()
    return render(request, 'campsearch.html', {'form':form})

Any clue? 任何线索?

I'd recommend you to implement this: 我建议你实现这个:

#views.py
def normalize_query(query_string,
    findterms=re.compile(r'"([^"]+)"|(\S+)').findall,
    normspace=re.compile(r'\s{2,}').sub):

    '''
    Splits the query string in invidual keywords, getting rid of unecessary spaces and grouping quoted words together.
    Example:
    >>> normalize_query('  some random  words "with   quotes  " and   spaces')
        ['some', 'random', 'words', 'with quotes', 'and', 'spaces']
    '''

    return [normspace(' ',(t[0] or t[1]).strip()) for t in findterms(query_string)]

def get_query(query_string, search_fields):

    '''
    Returns a query, that is a combination of Q objects. 
    That combination aims to search keywords within a model by testing the given search fields.
    '''

    query = None # Query to search for every search term
    terms = normalize_query(query_string)
    for term in terms:
        or_query = None # Query to search for a given term in each field
        for field_name in search_fields:
            q = Q(**{"%s__icontains" % field_name: term})
            if or_query is None:
                or_query = q
            else:
                or_query = or_query | q
        if query is None:
            query = or_query
        else:
            query = query & or_query
    return query

And for each search 并为每次搜索

 #views.py
 def search_for_something(request):
    query_string = ''
    found_entries = None
    if ('q' in request.GET) and request.GET['q'].strip():
        query_string = request.GET['q']
        entry_query = get_query(query_string, ['field1', 'field2', 'field3'])
        found_entries = Model.objects.filter(entry_query).order_by('-something')

    return render_to_response('app/template-result.html',
            { 'query_string': query_string, 'found_entries': found_entries },
            context_instance=RequestContext(request)
        )

And in the template 并在模板中

#template.html
<form class="" method="get" action="{% url 'search_for_something' model.pk %}">
    <input name="q" id="id_q" type="text" class="form-control" placeholder="Search" />
    <button type="submit">Search</button>
</form>

#template-result.html
{% if found_entries %}
   {% for field in found_entries %}
        {{ model.field }}
   {% endfor %}
{% endif %}

And the url 和网址

 #urls.py
 url(r'^results/$', 'app.views.search_for_something', name='search_for_something'),

__search is only going to work on TextFields with Full Text Indexing (sounds like your description field is this). __search只适用于带有全文索引的TextFields(听起来就像你的描述字段一样)。 Instead of this try using: 而不是尝试使用:

Q(name__icontains=terms)

That is a case insensitive 'contains' on the 'CharField' fields. 这是'CharField'字段中不区分大小写的'contains'。


search: https://docs.djangoproject.com/en/dev/ref/models/querysets/#search 搜索: https//docs.djangoproject.com/en/dev/ref/models/querysets/#search

icontains: https://docs.djangoproject.com/en/dev/ref/models/querysets/#icontains icontains: https ://docs.djangoproject.com/en/dev/ref/models/querysets/#icontains

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM