当前位置: 首页>>代码示例>>Golang>>正文


Golang Collection.UpdateId方法代码示例

本文整理汇总了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)
}
开发者ID:serash,项目名称:YunYun,代码行数:12,代码来源:db.go

示例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)
}
开发者ID:serash,项目名称:YunYun,代码行数:19,代码来源:db.go

示例3: SaveKotoba

func SaveKotoba(mk *MongoKotoba, c *mgo.Collection) error {
	return c.UpdateId(mk.Id, mk)
}
开发者ID:serash,项目名称:YunYun,代码行数:3,代码来源:db.go


注:本文中的labix/org/v2/mgo.Collection.UpdateId方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。