我需要保存一些数据,其中包含一个名为 ID 的字段,这是一个使用 golang 和Olivere弹性搜索包的uuid im这是我的代码
type Space struct {
ID string `json:"id"`
Name string `json:"name"`
Type string `json:"type"`
}
做了一些转换后
js := string(data)
// upto this place there is no error or warnings
ind, err := esclient.Index().
Index(Type).
BodyJson(js).
Do(ctx)
这是它抛出的错误
无法在 ID 为“gPmI8HIBCIO6Ejb-Y51D”的文档中解析类型为 [long] 的字段 [id]。字段值预览:'a5c723c5-1f6e-457f-9556-47b7ebcfd183'
qq_遁去的一_1
相关分类