1

我有一个 protobuf 消息定义为:

message examplemessage
{
    string field1 = 1;
    string field2 = 2;
    repeated bytes field3 = 3;
}

我加载我的protobuf:

protobuf.load(path).then(root => {
    // global for example
    examplemessage = root.lookupType("test.examplemessage");
    resolve(); 
});

我创建了一个 protobuf 消息对象

let createdMessage = examplemessage.create({
    field1: "test1",
    field2: "test2",
    field3: new Uint8Array([0,0,0,33])
});

然后我对其进行编码

let encoded = examplemessage.encode(createdMessage).finish();

然后我解码并期待

{
    field1: "test1",
    field2: "test2",
    field3: Uint8Array(4) [0, 0, 0, 33]
}

相反,我看到

{
    field1: "test1",
    field2: "test2",
    [Uint8Array(0), Uint8Array(0), Uint8Array(0), Uint8Array(0)]
}

然后我将我的 protobuf 加载更改为 JSON

const root = protobuf.Root.fromJSON(json);

这可以按预期工作,没有其他更改。

我做错了什么还是这是一个错误?

谢谢

Protoubuf 版本:6.8.6

浏览器:铬

带有工作 JSON 加载的 JSFiddle 示例:https ://jsfiddle.net/740snmu6/12/

4

1 回答 1

0

repeated bytes表示一个Array字节您可能已经知道,相应的字节类型在 JavaScript 中是Uint8Arrayor Array),因此要使其工作,您应该以这种方式创建消息:

{
    field1: "test1",
    field2: "test2",
    field3: [new Uint8Array([0, 0, 0, 33]), new Uint8Array([0, 0, 0, 33]), new Uint8Array([0, 0, 0, 33])]
}

于 2018-11-28T13:53:02.407 回答