我正在尝试获取某个用户创作的博客条目列表,但我的查询只返回创建的第一个条目。
这是我的用户模型
type User struct {
Id bson.ObjectId `bson:"_id,omitempty" json:"id"`
Name string `json:"name"`
}
和我的BlogEntry模型
type BlogEntry struct {
Id bson.ObjectId `bson:"_id,omitempty" json:"id"`
UserId bson.ObjectId `json:"user_id"`
Title string `json:"title"`
}
这是我获取某个用户的所有博客条目的查询
iter := service.Collection.Find(bson.M{"user_id": bson.ObjectIdHex(id)}).Iter()
问题是,这只会导致传递id的用户的FIRST条目。
我检查了数据,看起来是正确的,所有条目都有正确的user_id字段,依此类推。
为什么我只获得第一个条目的任何想法?
编辑:
完成查询条目的函数的实现。
func (service *BlogEntryService) GetEntryByUserId(id string) []models.BlogEntry {
var entries []models.BlogEntry
iter := service.Collection.Find(bson.M{"user_id": bson.ObjectIdHex(id)}).Iter()
result := models.BlogEntry{}
for iter.Next(&result) {
entries = append(entries, result)
}
return entries
}
答案 0 :(得分:3)
好吧,我想通了,可能是一个初学者的错误。
我仍然不知道它为什么会返回第一个对象,这仍然有点奇怪。
但是我的错误是没有在模型上添加“user_id”字段作为bson。 所以这个:
type BlogEntry struct {
Id bson.ObjectId `bson:"_id,omitempty" json:"id"`
UserId bson.ObjectId `json:"user_id"`
Title string `json:"title"`
}
应该是:
type BlogEntry struct {
Id bson.ObjectId `bson:"_id,omitempty" json:"id"`
UserId bson.ObjectId `bson:"user_id" json:"user_id"`
Title string `json:"title"`
}
现在它按预期工作了!