我收到以下格式的 JSON 数据:
`{"command":"Add", "IP":"127.0.0.1", "name":"LSP1", "port": 5000}`
我想每次都删除第一个键值对。但是,将上述 json 的一部分仅插入到 mongodb 集合中的一般方法也会有所帮助。
例如。只要`{"IP":"127.0.0.1", "name":"LSP1", "port": 5000}`
我有以下函数可以在集合中插入 json 文档。
func AddDocument(db string, coln string, jsondata string) int {
coll := client.Database(db).Collection(coln)
// doc = ????????
result, err := coll.InsertOne(context.TODO(), doc)
if err != nil {
panic(err)
}
}
上面的函数应该加什么代码?