我正在使用下面的代码来更新 elasticsearch 中的文档
client.update({
index: 'myindex',
type: 'mytype',
id: '1',
body: {
script: 'ctx._source.tags += tag',
params: { tag: 'some new tag' }
}
}, function (error, response) {
});
但是,这会引发编译错误。当我用上面替换标记时params.tag
,它会将 null 附加到当前字段,即标识params.tag
为null
.