gpt4 book ai didi

angularjs - Golang+mgo - 如何更新数据库文件?

转载 作者:IT王子 更新时间:2023-10-29 02:14:19 30 4
gpt4 key购买 nike

我有一个使用 $resource 的 angularJS 前端,它使用 HTTP 方法将请求发送到我的 Go 服务器。我想在发送 PATCH 时更新现有的数据库条目。我需要向 GO 服务器提供多个数据字段。 angularJS 客户端应该如何以什么格式发送数据?从 mgo 文档中,我找到了下面要更新的代码。 Update 字段是否可以采用 Go 结构,该结构将从客户端收到的数据中解析并跳过空字段?

        change := mgo.Change{
Update: bson.M{"$inc": bson.M{"n": 1}},
Upsert: false,
Remove: false,
ReturnNew: true,
}
info, err = col.Find(M{"_id": id}).Apply(change, &doc)
fmt.Println(doc.N)

我计划将数据作为查询发送的 angularjs 代码。

            UpdateOneSchedule.update({bkresources:dbResources},
function(data){
//on success
},
function(httpResponse){
//on error
if(httpResponse.status === 409){
}
});

最佳答案

是的,这是可能的。一个简单的例子是:

var myStruct struct {
Name string `json:"name" bson:"name,omitempty"`
Age int `json:"age" bson:"age"`
}

您将数据解析到 myStruct 中并提供相同的对象进行更新。

change := mgo.Change{
Update: bson.M{"$inc": bson.M{"n": 1}, "$set": bson.M{"name": myStruct.Name}},
Upsert: false,
Remove: false,
ReturnNew: true,
}
info, err = col.Find(M{"_id": id}).Apply(change, &doc)
fmt.Println(doc.N)

,omitempty 将以与 JSON 相同的方式工作,这意味着,如果它为空,则不会被解析,示例:

myStruct.Name = ""
myStruct.Age = 23
col.Insert(myStruct)

这将创建以下 BSON 文档:

{
id: ObjectId("573da7dddd73171e42a84045"),
age: 23
}

关于angularjs - Golang+mgo - 如何更新数据库文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37345679/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com