登录
首页 >  Golang >  Go问答

为 Bson.M mongodb 创建自定义 mashler/unmashler 时出错

来源:Golang技术栈

时间:2023-03-04 11:24:05 411浏览 收藏

亲爱的编程学习爱好者,如果你点开了这篇文章,说明你对《为 Bson.M mongodb 创建自定义 mashler/unmashler 时出错》很感兴趣。本篇文章就来给大家详细解析一下,主要介绍一下golang,希望所有认真读完的童鞋们,都有实质性的提高。

问题内容

WriteValueBytes can only write while positioned on a Element or Value but is positioned on a TopLevel尝试为 bson.M 创建自定义 mashler/unmashler 时出现错误

我有一个名为 TransactionId 的自定义类型,它表示一个 UUID,我想在存储到 monbodb 之前将此值转换为字符串,并在从 mongodb 提取值时将其从字符串转换回来。

这是我到目前为止的代码

package main

import (
    "github.com/google/uuid"
    "github.com/pkg/errors"
    "go.mongodb.org/mongo-driver/bson/bsontype"
    "go.mongodb.org/mongo-driver/x/bsonx/bsoncore"
    "go.mongodb.org/mongo-driver/bson"
    "log"
)

// TransactionID is a UUID used to trace a batch of work which is being processed.
type TransactionID uuid.UUID

// String returns the transaction id as a string
func (id TransactionID) String() (result string, err error) {
    val, err := uuid.FromBytes(id[:])
    if err != nil {
        return result, errors.Wrapf(err, "cannot convert transaction ID %s to UUID", string(id[:]))
    }
    return val.String(), nil
}

func (id TransactionID) MarshalBSONValue() (bsontype.Type, []byte, error) {
    idString, err :=  id.String()
    if err != nil {
        return bsontype.String, nil, err
    }
    return bsontype.String, bsoncore.AppendString(nil, idString), nil
}


func (id *TransactionID) UnmarshalBSONValue(bsonType bsontype.Type, bytes []byte) error {
    uid, err := uuid.FromBytes(bytes)
    if err != nil {
        return err
    }

    *id = TransactionID(uid)
    return nil
}


func NewTransactionID() TransactionID {
    return TransactionID(uuid.New())
}


func main() {
    id := NewTransactionID()

    _, err :=  bson.Marshal(id)
    if err != nil {
        log.Fatal(err)
    }
}

我正在WriteValueBytes can only write while positioned on a Element or Value but is positioned on a TopLevel解组步骤中。

链接: https: [//play.golang.org/p/_n7VpX-KIyP](https://play.golang.org/p/_n7VpX- KIyP)

正确答案

我得到 WriteValueBytes 只能在定位在元素或值上时写入,但在解组步骤中定位在 TopLevel 上。

函数[bson.Marshal()](https://pkg.go.dev/go.mongodb.org/mongo- driver/bson?tab=doc#Marshal)需要一个可以转换为文档的参数(即interface{})。这就是错误消息与值的位置有关的原因。即你不能在文档的顶层有一个字符串,它必须是文档的一个元素。如果您需要编组单个值,则应使用[bson.MarshalValue()](https://pkg.go.dev/go.mongodb.org/mongo- driver/bson?tab=doc#MarshalValue)代替。

id := NewTransactionID()
vtype, vdata, err := bson.MarshalValue(id)

下面是一个使用示例bson.Marshal()(添加到您的示例中):

type Foo struct {
    ID TransactionID
}

func main() {
    id := NewTransactionID()
    foo, err :=  bson.Marshal(&Foo{ID:id})
    if err != nil {
        panic(err)
    }
}

以上就是本文的全部内容了,是否有顺利帮助你解决问题?若是能给你带来学习上的帮助,请大家多多支持golang学习网!更多关于Golang的相关知识,也可关注golang学习网公众号。

声明:本文转载于:Golang技术栈 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>
评论列表