标签: mongodb go
我有一个程序,我需要在Go lang中从DB集合中访问Mongo Sharred Key。我将集合输出检索为
map[string]interface{}
并输入cast Mongo Sharred Key。但有时它的定义是int64,有时它只是int。所以我的Go程序正在变得惊慌失措
“接口转换无效 - 接口定义为int,但其类型为int64”。
当我再次将其定义更改为int64时,我得到其他记录的相同类型错误。请帮忙。