php小編新一在這裡為大家介紹一個問題:在Protobuf訊息中,我們發現沒有實作protoreflect.ProtoMessage介面的ProtoReflect方法,而該方法使用了指標接收器。這個問題可能會導致一些困惑和不便。在文章中,我們將深入探討這個問題的原因和可能的解決方案,以幫助大家更好地理解和應對這個問題。讓我們一起來了解吧!
我有一條 protobuf 訊息導入 "google/protobuf/any.proto"
:
message mintrecord { ... google.protobuf.any data = 11; ... }
我正在嘗試使用anypb序列化data
字段內的另一個protobuf:
data, err := anypb.new(protobuf.lootcrateprize{ items: &protobuf.inventory{items: items}, roll: fmt.sprintf("%f", roll), }) if err != nil { log.println("[lootbox] err: error marshalling lootcrate prize data into mintrec", err) } else { mintrecordproto.data = data }
編譯後出現以下錯誤:
cannot use protobuf.lootcrateprize{…} (value of type protobuf.lootcrateprize) as type protoreflect.protomessage in argument to anypb.new: protobuf.lootcrateprize does not implement protoreflect.protomessage (protoreflect method has pointer receiver)
根據文檔,我在這裡沒有做任何異常的事情。我該如何解決這個問題?
這是我嘗試序列化並儲存在 data
欄位內的 protobuf:
lootcrate.proto:
syntax = "proto3"; package protobuf; option go_package = "protobuf/"; import "protobuf/inventory.proto"; import "protobuf/flowerdbservice.proto"; message LootcratePrize { Inventory items = 1; repeated NFT flowers = 2; string roll = 3; }
sarath sadasivan pillai 是正確的。
將您的程式碼更改為:
data, err := anypb.New(&protobuf.LootcratePrize{ Items: &protobuf.Inventory{Items: items}, Roll: fmt.Sprintf("%f", roll), })
以上是Protobuf訊息沒有實作protoreflect.ProtoMessage(ProtoReflect方法有指標接收器)的詳細內容。更多資訊請關注PHP中文網其他相關文章!