0
誰能告訴我如何在elasticsearch-js中嚴格匹配。這裏是我的搜索節點彈性搜索嚴格匹配
client.search({{
index: 'hash_tag',
type: 'hash_tag',
lenient:false,
body: {
query: {
match: {
tag_name: 'hash tag 1'
}
}
}
}).then(function (body) {
console.log("body", JSON.stringify(body));
}, function (error) {
console.trace(error.message);
})
此查詢搜索要麼哈希標籤,1我正在尋找確切的整串match.here是我的榜樣指數的風格。
{
"_index": "hash_tag",
"_type": "hash_tag",
"_id": "3483",
"_score": 0.019691018,
"_source": {
"id": "3483",
"labels": [
"hash_tag"
],
"tag_name": "hash tag 2"
}
}
它的工作原理。感謝馬科斯 – shivshankar