增删改查 模版 6.4

GET 请求:
http:ip:port /index :查询索引信息
http:ip:port/index/type/doc_id :查询指定文档信息
POST 请求:
http:ip:port/index/type/_search : 查询文档 ,可以在请求体中添加json 字符串 来代表查询条件
http:ip:port/index/type/doc_id/_update: 修改文档,在请求体中 指定json 字符串代表修改的具体信息
PUT请求:
http:ip:port/index :创建一个索引,需要在请求体中指定索引的信息,类型,结构
http:ip:port/index/type/_mappings: 代表创建索引是,指定索引文档的属性信息
DELETE 请求:
http:ip:port/index 删库
http:ip:port/index/type/doc_id 删除指定文档

你可能感兴趣的:(增删改查 模版 6.4)