如何使用mgo从golang中的mongodb集合中选择所有记录

时间:2014-07-10 15:53:31

标签: mongodb go bson mgo

在MongoDB中执行db.mycollection.find()之类的操作会返回集合中的所有文档。

使用 labix.org/v2/mgo 包在GoLang工作时,我会这样做:

query := db.C("client").Find();

它抱怨它需要以界面的形式输入。我需要做的就是检索所有文档并迭代它们并显示每个文档。我该如何达到这个效果?我见过的所有例子似乎都有过滤器。

2 个答案:

答案 0 :(得分:40)

找到解决方案:

    var results []client

    err := db.C("client").Find(nil).All(&results)
    if err != nil {
        // TODO: Do something about the error
    } else {
        fmt.Println("Results All: ", results) 
    }

答案 1 :(得分:0)

func (uc UserController) GetUsersList(w http.ResponseWriter,r *http.Request,p httprouter.Params){

var u []models.User
// Fetch user
if err := uc.session.DB("mydb").C("users").Find(nil).All(&u); err != nil {

    w.WriteHeader(404)
    fmt.Println("Results All: ", u) 
    return
}
uj, _ := json.Marshal(u)

w.Header().Set("Content-Type", "application/json")
w.WriteHeader(200)
fmt.Fprintf(w, "%s", uj)

}