我有一个使用javascript(Typescript)的node.js应用程序。我在elasticsearch中也有一个索引,它有一个类型为'short'的字段。当我尝试从我的node.js应用程序写入此内容时,我试图使用字段类型'number'存储一个值,我收到此错误消息:
“类型”: “illegal_argument_exception” “reason”:“不同类型的mapper [metadata.someProperty],current_type [short],merged_type [integer]”
如何从javascript写入此字段?