我有一個Torrent項目,它有子文檔數組命名爲'_replies'保存的用戶評論,並且每個評論還包括保存的用戶回覆的子文檔數組'_replies',這是我的所有架構定義: var CommentSchema = new Schema({
user: {
type: Schema.Types.ObjectId,
ref: 'User'
},
com
我想使用mgo選擇一個子文檔。 在選擇之前,查詢應該查詢右頂層文檔。 我嘗試這樣做: name := "anything"
w := models.Wallet{}
c := s.DB("ep2").C("users")
err := c.Find(bson.M{"name": name}).Select(bson.M{"wallet": 1}).One(&w)
這些都是結構: type