dongwenxiu5200 2014-05-06 07:38
浏览 19
已采纳

如何从地图中获取价值-Go语言?

I am working with mgo to use MongoDB with Go. I have the following code:

func Find(collectionName, dbName string, query interface{}) (result []interface{}, err error) {
    collection := session.DB(dbName).C(collectionName)
    err = collection.Find(query).All(&result)
    return result, err
}

func GetTransactionID() (id interface{}, err error) {
    query := bson.M{}
    transId, err := Find("transactionId", dbName, query)
    for key, value := range transId {
        fmt.Println("k:", key, "v:", value)
    }
}

Output: k: 0 v: map[_id:ObjectIdHex("536887c199b6d0510964c35b") transId:A000000000]

I need to get the values of _id and transId from the map value returned in the slice from Find. How can I do that?

  • 写回答

1条回答 默认 最新

  • duannaxin9975 2014-05-06 09:26
    关注

    I'm just guessing but in case you just want to retrieve all Transaction documents and print them - here is how:

    Given you have a struct representing the structure of the documents of your collection e.g.:

    type Transaction struct {
      Id            bson.ObjectId `bson:"_id"`
      TransactionId string        `bson:"transId"`
    }
    

    You can obtain all the documents using the MongoDB driver (mgo):

    var transactions []Transaction
    err = c.Find(bson.M{}).All(&transactions)
    // handle err
    for index, transaction := range transactions {
      fmt.Printf("%d: %+v
    ", index, transaction)
    }
    

    Addition (generic solution)

    OK, after you provided some more insight this might be a generic solution without using a struct. Try to marshall into a BSON document bson.M (not tested):

    var data []bson.M
    err := c.Find(bson.M{}).All(&data)
    // handle err 
    for _, doc := range data {
      for key, value := range doc {
        fmt.Println(key, value)
      }
    }    
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 西门子S7-Graph,S7-300,梯形图
  • ¥50 用易语言http 访问不了网页
  • ¥50 safari浏览器fetch提交数据后数据丢失问题
  • ¥15 matlab不知道怎么改,求解答!!
  • ¥15 永磁直线电机的电流环pi调不出来
  • ¥15 用stata实现聚类的代码
  • ¥15 请问paddlehub能支持移动端开发吗?在Android studio上该如何部署?
  • ¥20 docker里部署springboot项目,访问不到扬声器
  • ¥15 netty整合springboot之后自动重连失效
  • ¥15 悬赏!微信开发者工具报错,求帮改