gpt4 book ai didi

python - django elasticsearch 在数据库有记录时给出空记录

转载 作者:行者123 更新时间:2023-12-01 08:44:05 24 4
gpt4 key购买 nike

模型.py

class job(models.Model):
job_title = models.CharField(max_length=256)

def __str__(self):
return self.job_title

文档.py

from django_elasticsearch_dsl import DocType, Index
# from seeker.models import AppliedJobs
from employer.models import PostJob
# from access.models import SeekerRegister

jobs = Index('jobs')

@jobs.doc_type
class AppliedJobsDocument(DocType):
class Meta:
model = PostJob
fields = [
'job_title',

]

View .py

from .documents import AppliedJobsDocument
from django.http import JsonResponse

def search_applied_jobs(request):
q = request.GET.get('q')
print(q)
jobs = AppliedJobsDocument.search().query("match", title=q)
lst=[]
dict ={}
for i in jobs:
print(i)
return JsonResponse(lst,safe=False)

设置.py:

ELASTICSEARCH_DSL = {
'default': {
'hosts': 'localhost:9200'
},
}

i have added 'django_elasticsearch_dsl' in the APP also

我正在尝试将 Elasticsearch 与 django 一起使用,上面是我的代码。我的数据库有记录,但当我尝试打印时却得到空数据它在我的控制台中。

我已经安装了java,并且elasticsearch也进入了端口localhost:9200

请查看我的代码。

最佳答案

您需要首先将数据库中的数据索引到elasticsearch中。然后您将能够在elasticsearch上执行查询。

关于python - django elasticsearch 在数据库有记录时给出空记录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53372109/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com