Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
174 views
in Technique[技术] by (71.8m points)

javascript - How to read file in PROTOBUF using node.js?

I started few days ago to make a project using protobuf but i cant read binary file like a array or json, is it possibly?

syntax = "proto3";

  message Employee {
  int32 id= 1;
  string name = 2;
  float temp = 3;
  bool status = 4;
 }

 message Employees{
   repeated Employee employees =1;
 }

my index: i trying to do it with multiple objects

const Schema = require("./employees_pb");
 const fs = require("fs");

 const lampada = new Schema.Employee();

 lampada.setId(1);
 lampada.setName("Lampada");
 lampada.setTemp(30);
 lampada.setStatus(true);

 const televisao = new Schema.Employee();

 televisao.setId(2);
 televisao.setName("Televisao");
 televisao.setTemp(0);
 televisao.setStatus(false);

const employees = new Schema.Employees();
employees.addEmployees(lampada);
employees.addEmployees(televisao);

 const bytes = employees.serializeBinary();
 const employees2 = Schema.Employees.deserializeBinary(bytes);
 console.log(employees2);

would the result look like a json? like: {id: 1 , name: lampada, temp: 30, status true}...

question from:https://stackoverflow.com/questions/66045803/how-to-read-file-in-protobuf-using-node-js

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...