Protobuf 编码返回空值

问题描述 投票:0回答:1

我正在尝试使用 protobufjs 中的encode 方法将消息编码到缓冲区。

这是我的代码。

setValue(value) {
        var address = makeAddress(value);
        let data = protobuf["Icao"].create({data:value})
        let container = protobuf["IcaoContainer"].create()
        container.entries = data
        console.log(container)
        var stateEntriesSend = {}
        stateEntriesSend[address] = protobuf['IcaoContainer'].encode(container).finish();
        console.log(stateEntriesSend[address])
        return  this.context.setState(stateEntriesSend, this.timeout).then(function(result) {
            console.log("Success", result)
          }).catch(function(error) {
            console.error("Error", error)
          })
      }

console.log(container)
的值如下,这是正确的。

IcaoContainer {
  entries: 
   Icao {
     data: <Buffer a2 66 61 63 74 69 6f 6e 63 73 65 74 64 64 61 74 61 68 61 73 61 70 6f 69 75 79> } }

但我正在尝试使用

protobuf['IcaoContainer'].encode(container).finish()

将其编码为缓冲区

它似乎返回一个空缓冲区。

console.log(stateEntriesSend[address])
的值低于

<Buffer >

我的原型文件。

syntax = "proto3";

message Icao {
  string data = 1;
}

message IcaoContainer {
  repeated Icao entries = 1;
}

这里出了什么问题?

javascript node.js protocol-buffers protobuf.js
1个回答
0
投票

以防万一其他人遇到同样的问题,我已经找出了问题所在。

根据我的 ICAO 消息,我在原型中定义了数据应该是一个字符串。但是当我调用 setValue 方法时,我传递的是 JSON 对象而不是该字符串值。所以当我使用

protobuf["Icao"].create({data:value})

该值不是字符串。这就是问题所在。根据protobufjs文档,在使用创建方法之前验证有效负载始终是一个好习惯。像这样。

 // Exemplary payload
    var payload = { awesomeField: "AwesomeString" };

    // Verify the payload if necessary (i.e. when possibly incomplete or invalid)
    var errMsg = AwesomeMessage.verify(payload);
    if (errMsg)
        throw Error(errMsg);

    // Create a new message
    var message = AwesomeMessage.create(payload); // or use .fromObject if conversion is necessary

    // Encode a message to an Uint8Array (browser) or Buffer (node)
    var buffer = AwesomeMessage.encode(message).finish();
    // ... do something with buffer

这给我带来了一个错误,说数据必须是字符串。这就是问题所在。

而且由于我在 IcaoContainer 中使用了

repeated
关键字,
container.entries
应该是一个数组。

© www.soinside.com 2019 - 2024. All rights reserved.