bson的零/零值是多少.ObjectId



我在创建一元测试时遇到了以下情况:

  • 我有一个有外键的对象。出于某种原因,我需要切换ID,它就可以工作了。然而,有时,我需要删除这个ID。如果我有ID,我会意识到某个动作,如果我没有,那么什么都不会发生

但是,我找不到将bson.ObjectId设置为nil或零的方法。

有人知道该怎么做吗?

或者您可以使用基元。NilObjectID

NilObjectID是ObjectID的零值。

bson.ObjectId是字符串的别名,因此零值是空字符串">

基于@dom答案(在注释中(,我现在使用的解决方法是:

package your_package
import "github.com/globalsign/mgo/bson"
func GenerateNewGuidHelper() *bson.ObjectId {
id := bson.NewObjectId()
return &id
}
func IsStringIdValid(id string) bool {
return id != "" && bson.IsObjectIdHex(id)
}
func ConvertStringIdToObjectId(id string) *bson.ObjectId {
if id != "" && bson.IsObjectIdHex(id){
bsonObjectId := bson.ObjectIdHex(id)
return &bsonObjectId
}
return nil
}
func ConvertStringIdsToObjectIds(ids []string) []*bson.ObjectId {
var _ids []*bson.ObjectId
for _, id := range ids {
_ids = append(_ids, ConvertStringIdToObjectId(id))
}
return _ids
}
func IsObjectIdValid(id *bson.ObjectId) bool {
return id.Hex() != "" && bson.IsObjectIdHex(id.Hex())
}
func ConvertObjectIdToStringId(id *bson.ObjectId) string  {
if id != nil {
return id.Hex()
}
return ""
}
func ConvertObjectIdsToStringIds(ids []*bson.ObjectId) []string {
var _ids []string
for _, id := range ids {
_ids = append(_ids, ConvertObjectIdToStringId(id))
}
return _ids
}

此外,正如@dom所说,我现在将我的mongoDB ID保存为*bson.ObjectId,而不是bson.ObjectId。示例:

package datamodels
import (
"github.com/globalsign/mgo/bson"
)
type User struct {
ID *bson.ObjectId `protobuf:"bytes,1,opt,name=id,proto3" json:"_id,omitempty" bson:"_id,omitempty"`
}

我希望它能有所帮助!

相关内容

  • 没有找到相关文章

最新更新