2016-12-06 106 views

回答

2

如果您使用「結構化」查詢解析器運行搜索,則應該能夠直接傳遞您的值,就好像它是文字一樣。查詢字面數組字段沒有區別。

例如:

(and color_f_la:'Blue') 

或者,如果你想返回的東西,有藍色或綠色:

(or color_f_la:'Blue' color_f_la:'Green') 

或者,如果你想返回的東西,有藍色和唯一的綠色:

(and color_f_la:'Blue' color_f_la:'Green')