gpt4 book ai didi

node.js - 用查询更新elasticsearch不允许使用特殊字符更新值

转载 作者:行者123 更新时间:2023-12-02 22:16:22 25 4
gpt4 key购买 nike

我的数据在字段中有特殊字符!当我添加这些数据时,它将正确插入到Elasticsearch中!但是在更新时会出错!

POST index_name/_update_by_query
{
"script": {
"source": "ctx._source.key1='vakey22'",
"lang": "painless"
},
"query": {
"bool": {
"must": [
{"term":{"condtion1":"value1"}}
]
}
}
}
然后它可以完美工作,但是当我们尝试添加任何特殊字符时,它会给出错误
POST index_name/_update_by_query
{
"script": {
"source": "ctx._source.key1='vak\ey22'",
"lang": "painless"
},
"query": {
"bool": {
"must": [
{"term":{"condtion1":"value1"}}
]
}
}
}
添加任何特殊字符时出现以下错误
[script_exception]编译错误,其中{{script_stack = {0 =“... ctx._source.key1 =''; ctx._source.key2 ...”&1 =“^ ----这里”}&script = “ctx._source.key3 ='0'
我们该如何解决呢?

最佳答案

我认为问题在于,由于您要发布JSON,因此需要转义转义字符(这将是\)。因此,要转义特殊字符,应为\\,并且要获得实际的反斜杠,应编写\\\\。这个github issue讨论了类似的内容,尽管有点不同。因此,您的查询将如下所示:

POST index_name/_update_by_query
{
"script": {
"source": "ctx._source.key1='vak\\\\ey22'",
"lang": "painless"
},
"query": {
"bool": {
"must": [
{"term":{"condtion1":"value1"}}
]
}
}
}

关于node.js - 用查询更新elasticsearch不允许使用特殊字符更新值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63789999/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com