我正在使用Curl将数据放入ES。我已经创建了一个customer
索引。
以下命令来自ES document。
curl -X PUT "localhost:9200/customer/_doc/1?pretty" -H 'Content-Type: application/json' -d'
{
"name": "John Doe"
}
'
执行此操作时,出现错误。
{
"error" : {
"root_cause" : [
{
"type" : "mapper_parsing_exception",
"reason" : "failed to parse"
}
],
"type" : "mapper_parsing_exception",
"reason" : "failed to parse",
"caused_by" : {
"type" : "json_parse_exception",
"reason" : "Unexpected character ('n' (code 110)): was expecting double-quote to start field name\n at [Source: org.elasticsearch.common.bytes.BytesReference$MarkSupportingStreamInputWrapper@1ec5236e; line: 3, column: 4]"
}
},
"status" : 400
}
我认为,以下是造成我的错误的主要原因。
原因”:“意外字符('n'(代码110)):期望双引号开头字段名
我觉得我需要使用(反斜杠)逃脱。但是,我的尝试\'
效果不佳。有什么建议吗?
答案 0 :(得分:0)
我使它像下面那样工作。
curl -X PUT "localhost:9200/customer/_doc/1?pretty" -H 'Content-Type: application/json' -d '
{
\"name\": \"John Doe\" <==== I used "backslash" in front of all the "
}
'
没有我的评论的答案:
curl -X PUT "localhost:9200/customer/_doc/1?pretty" -H 'Content-Type: application/json' -d '
{
\"name\": \"John Doe\"
}
'