你的浏览器禁用了JavaScript, 请开启后刷新浏览器获得更好的体验!
输入关键字进行搜索
搜索:
没有找到相关结果
ouyangDD
赞同来自:
{ "settings":{ "index":{ "number_of_shards":1, "number_of_replicas":0 } }, "mappings": { "doc": { "properties": { "file": { "type": "attachment", "fields": { "content": { "type": "text", "analyzer": "ik_max_word", "search_analyzer": "ik_max_word", } } } } } } }
fp = open('/Users/oubing/test4.pdf', 'rb') text = base64.b64encode(fp.read()) fp.close() es.index(index="ai", doc_type="doc", body={"file":text})
res = es.search(index="ai", body={ "query": { "match": { "file.content": "中国" } }, "highlight": { "fields": { "file.content": {} } } }) for hit in res["hits"]["hits"]: print(hit["_id"])
要回复问题请先登录或注册
1 个回复
ouyangDD
赞同来自:
映射
索引文档
搜索