在ES的查詢過程中,我們經常需要對JSON進行層面分析,以便更好地了解查詢的結果,從而進行調試和優化。
下面介紹一些常用的方法:
#1 顯示所有層面 curl -XGET 'http://localhost:9200/index/type/id?pretty&fields=_source' #2 僅顯示特定層面 curl -XGET 'http://localhost:9200/index/type/id?pretty&fields=_source.name' #3 顯示深度嵌套層面 curl -XGET 'http://localhost:9200/index/type/id?pretty&fields=_source.items.name'
以上代碼使用了pre標簽進行排版,更加清晰易讀。