本文整理汇总了Golang中labix/org/v2/mgo.Collection.UpdateId方法的典型用法代码示例。如果您正苦于以下问题:Golang Collection.UpdateId方法的具体用法?Golang Collection.UpdateId怎么用?Golang Collection.UpdateId使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类labix/org/v2/mgo.Collection
的用法示例。
在下文中一共展示了Collection.UpdateId方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: ReviewUpdateKotoba
func ReviewUpdateKotoba(id string, review bool, c *mgo.Collection) error {
_id := bson.ObjectIdHex(id)
kotoba := MongoKotoba{}
c.Find(bson.M{"_id": _id}).One(&kotoba)
if review {
kotoba.IncLevel()
} else {
kotoba.DecLevel()
}
fmt.Println(kotoba)
return c.UpdateId(_id, kotoba)
}
示例2: SaveEditKotoba
func SaveEditKotoba(id string, word string, ll string, diff int, hatsuon string, h_ string,
imi string, i_ string, c *mgo.Collection) (*MongoKotoba, error) {
imis := SplitImi(imi)
hatsuons := SplitHatsuon(hatsuon)
labels := SplitLabels(ll)
_id := bson.ObjectIdHex(id)
kotoba := MongoKotoba{}
c.Find(bson.M{"_id": _id}).One(&kotoba)
fmt.Println(kotoba)
kotoba.Goi = word
kotoba.Hatsuons = *hatsuons
kotoba.Imis = *imis
kotoba.Labels = *labels
kotoba.Imi_ = i_
kotoba.Hatsuon_ = h_
kotoba.Difficulty = diff
fmt.Println(kotoba)
return &kotoba, c.UpdateId(kotoba.Id, &kotoba)
}
示例3: SaveKotoba
func SaveKotoba(mk *MongoKotoba, c *mgo.Collection) error {
return c.UpdateId(mk.Id, mk)
}