4

我是协议缓冲区的新手,我正在尝试从 api 响应中解码数据。

我从 api 响应中获取编码数据,并且我有一个 .proto 文件来解码数据,如何在 nodeJS 中解码数据。我曾尝试使用 protobuf.js,但我很困惑,我花了几个小时试图解决我的问题,查看资源,但我找不到解决方案。

4

1 回答 1

4

Protobufjs允许我们基于 .proto 文件对二进制数据的 protobuf 消息进行编码和解码。

这是一个使用此模块对测试消息进行编码然后解码的简单示例:

const protobuf = require("protobufjs");

async function encodeTestMessage(payload) {
    const root = await protobuf.load("test.proto");
    const testMessage = root.lookupType("testpackage.testMessage");
    const message = testMessage.create(payload);
    return testMessage.encode(message).finish();
}

async function decodeTestMessage(buffer) {
    const root = await protobuf.load("test.proto");
    const testMessage = root.lookupType("testpackage.testMessage");
    const err = testMessage.verify(buffer);
    if (err) {
        throw err;
    }
    const message = testMessage.decode(buffer);
    return testMessage.toObject(message);
}

async function testProtobuf() {
    const payload = { timestamp: Math.round(new Date().getTime() / 1000), message: "A rose by any other name would smell as sweet" };
    console.log("Test message:", payload);
    const buffer = await encodeTestMessage(payload);
    console.log(`Encoded message (${buffer.length} bytes): `, buffer.toString("hex"));
    const decodedMessage = await decodeTestMessage(buffer);
    console.log("Decoded test message:", decodedMessage);
}

testProtobuf();

和 .proto 文件:

package testpackage;
syntax = "proto3";

message testMessage {
    uint32 timestamp = 1;
    string message = 2;
}
于 2020-09-28T07:38:45.940 回答