Home  >  Q&A  >  body text

golang - go upper.io/db/mongo包如何使用update 一个字段

https://godoc.org/upper.io/db/mongo这个包

我想操做mongo如何用这个包更新其中的一个字段
func (self *Result) Update(src interface{}) error
这个函数的传参没有看懂 求解
例如 我有一个`type info struct {

Taskid     string `json:"taskid" db:",omitempty,json"`
URL        string `json:"url" db:",json"`
Method     string `json:"method" db:",json"`
Cookie     string `json:"cookie" db:",json"`
Body       string `json:"data" db:",json"`
User_agent string `json:"user-agent" db:",json"`
Status     int    `json:"status" db:",json"`
config     string `json:"tech" db:",json"`

}
`
只想更新其中一条的status值 如何实现

高洛峰高洛峰2754 days ago587

reply all(1)I'll reply

  • 大家讲道理

    大家讲道理2017-04-28 09:08:23

    Pass this model or composition map in, then change the status and leave everything else unchanged

    reply
    0
  • Cancelreply