{
"term": {
"attrs.attrValue": {
"value": "单摄"
,
"boost": 1
}
}
}这样是可以查查出来、、、、、
当加上中括号是查出来为空
{
"term": {
"attrs.attrValue": {
"value": ["单摄"]
,
"boost": 1
}
}
}
"term": {
"attrs.attrValue": {
"value": "单摄"
,
"boost": 1
}
}
}这样是可以查查出来、、、、、
当加上中括号是查出来为空
{
"term": {
"attrs.attrValue": {
"value": ["单摄"]
,
"boost": 1
}
}
}
2 个回复
tongchuan1992 - 学无止境、学以致用
赞同来自:
Charele - Cisco4321
赞同来自:
加了[],XContentParser在解析的时候,就会出解析出3个词
"[", "单摄", "]"
最后一个起作用,等于你去查"]"了,当然查不到什么了。