0
如何在多字段中搜索elasticsearch dsl python模塊,例如title
和body
字段,並通過created_at
字段的字段DESC進行排序。Python elasticsearch dsl搜索多字段和順序結果
我有這樣的例子,搜索僅在title
領域:
q = request.GET.get('q', None)
s = Search(using=elastic_client, index='post').query('match', title=q)
response = s.execute()
我怎樣才能做到這一點?