用於產品推薦,保證推薦欄目條數足夠,不空白。
{
"query": {
"bool": {
"should": {
"bool": {
"should": [
{
"multi_match": {
"query": "雲伺服器",
"type": "cross_fields",
"operator": "or",
"fields": [
"name^1.2",
"plain_content"
]
}
}
]
}
},
"filter": {
"bool": {
"must": {
"term": {
"post_type": "1"
}
}
}
}
}
}
}