6.2.7 修改 document

修改分两种: 整体替换和只修改某个字段

整体替换

和新增文档没有区别

PUT /movie_index/movie/3
{
  "id":"3",
  "name":"incident red sea",
  "doubanScore":"8.0",
  "actorList":[  
    {"id":"1","name":"zhang chen"}
  ]
}

只修改某个字段

使用post方法

POST /movie_index/movie/3/_update
{
  "doc": {
    "doubanScore":"8.1"
  }
}

results matching ""

    No results matching ""