Elasticsearch增删改(postman)
在Elasticsearch中使用Postman进行增删改操作,首先确保你已经安装了Postman,并且Elasticsearch服务已经运行。
以下是使用Postman进行增删改查操作的基本步骤和示例代码:
增加(Create)
请求方式:POST
URL:http://localhost:9200/your\_index/your\_type/
{
"name": "John Doe",
"age": 30
}
删除(Delete)
请求方式:DELETE
URL:http://localhost:9200/your\_index/your\_type/document\_id
修改(Update)
请求方式:POST
URL:http://localhost:9200/your\_index/your\_type/document\_id/\_update
{
"doc": {
"name": "Jane Doe"
}
}
查询(Query)
请求方式:GET
URL:http://localhost:9200/your\_index/your\_type/document\_id
在Postman中执行这些操作时,你需要选择相应的HTTP方法,填写URL和请求体(如果是POST或PUT操作),然后点击“Send”执行请求。记得替换your_index
、your_type
和document_id
为你的实际索引名、类型名和文档ID。
评论已关闭