doufan9290 2015-06-29 13:05
浏览 84
已采纳

使用mgo从Golang中的Mongodb中选择列

As I know, we can use

> db['twitter-3'].find({}, {"text": 1})

to select all texts in collection.

How can we use mgo to find specific field in golang? I tried

var result []string
err = conn.Find(bson.M{}, bson.M{"text", 1}).All(&result)

But it is not correct.

  • 写回答

3条回答 默认 最新

  • dongxie2756 2015-06-29 13:25
    关注

    Use the query Select method to specify the fields to return:

    var result []struct{ Text string `bson:"text"` }
    err := c.Find(nil).Select(bson.M{"text": 1}).All(&result)
    if err != nil {
        // handle error
    }
    for _, v := range result {
         fmt.Println(v.Text)
    }
    

    In this example, I declared an anonymous type with the one selected field. It's OK to use a type with all document fields.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 gis中用栅格计算器或加权总和后图层不显示,值也明显不对
  • ¥15 python使用python-pptx如何给幻灯片添加只读密码。
  • ¥15 深度神经网络传递自变量损失
  • ¥15 删除s的前驱节点,但是不知道错哪里了
  • ¥15 oracle数据库备份表如何操作
  • ¥15 软件定义网络mininet和onos控制器问题
  • ¥15 微信小程序 用oss下载 aliyun-oss-sdk-6.18.0.min client报错
  • ¥15 ArcGIS批量裁剪
  • ¥15 labview程序设计
  • ¥15 为什么在配置Linux系统的时候执行脚本总是出现E: Failed to fetch http:L/cn.archive.ubuntu.com