天天看點

Field [price] of type [text] is not supported for aggregation [avg]

{
    "properties":{
        "title":{
            "type": "text", // text 文本類型,可以分詞
            "index": true
        },
        "category": {
            "type":"text", // keyword 關鍵詞,必須是完整的,不能分詞
            "index": true
        },
        "images": {
            "type": "text",
            "index": true
        },
        "price":{
            "type":"float",
            "index":true
        }
    }
}      

繼續閱讀