💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
## 查询所有文档 ``` GET /user/_search ``` 查询到内容返回 ``` { "took" : 0, "timed_out" : false, "_shards" : { "total" : 1, "successful" : 1, "skipped" : 0, "failed" : 0 }, "hits" : { "total" : { "value" : 2, "relation" : "eq" }, "max_score" : 1.0, "hits" : [ { "_index" : "user", "_type" : "docs", "_id" : "2", "_score" : 1.0, "_source" : { "name" : "李四" } }, { "_index" : "user", "_type" : "docs", "_id" : "3", "_score" : 1.0, "_source" : { "name" : "李达康", "sex" : 1, "age" : 25, "address" : "河北省" } } ] } } ``` 未查到内容返回 ``` { "took" : 2, "timed_out" : false, "_shards" : { "total" : 1, "successful" : 1, "skipped" : 0, "failed" : 0 }, "hits" : { "total" : { "value" : 0, "relation" : "eq" }, "max_score" : null, "hits" : [ ] } } ```