如何使用Postman在弹性搜索中插入文档

时间:2018-02-20 13:59:41

标签: elasticsearch

我需要什么

我在这里尝试

   PUT /customer/_doc/1?pretty
  {
   "name": "John Doe"
  }
  

需要错误请求正文

当我尝试运行url时

快照

1。http://localhost:9200/customer?pretty

enter image description here 2。http://localhost:9200/customer/_doc/1?pretty&pretty enter image description here

3。http://localhost:9200/customer/_doc/1?pretty&pretty&name=test enter image description here

任何人都可以建议如何在弹性搜索中插入文档。

  • 欢迎提出任何建议。

2 个答案:

答案 0 :(得分:1)

将Json传递到正文并更改URL,如下所示:

Put into elastic via postman

答案 1 :(得分:0)

对PUT使用相同的方法。

该网址为"http://localhost:9200/movies/"

电影是索引的名称。

要发布的json是:

{
"id" : 1,
"title" : "Toy Story 1",
"year" : 1995,
"category" : "Adventure"
}

这是邮递员将数据推送到elasticseach的屏幕截图:

Postman1

您可以验证以下数据:

使用GET方法和url为http://localhost:9200/movies/_search?

Postman2