ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
## 查询只输出某些字段 ``` GET /user/docs/_search?_source=name,age ``` 这样就会限制只显示 ``name`` 和 ``age`` 字段 ``` { "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" : "1", "_score" : 1.0, "_source" : { "name" : "王五", "age" : 25 } }, { "_index" : "user", "_type" : "docs", "_id" : "2", "_score" : 1.0, "_source" : { "name" : "王五", "age" : 25 } } ] } } ```