在节点HTTP2流中发送和接收JSON

时间:2018-10-16 14:57:46

标签: node.js stream http2 node-streams

我正在使用HTTP2在Node中构建身份验证微服务。

如何正确地将JSON写入Node HTTP2流并从中读取JSON?

documentation给出了以下示例:

const http2 = require('http2');
const fs = require('fs');

const server = http2.createSecureServer({
  key: fs.readFileSync('localhost-privkey.pem'),
  cert: fs.readFileSync('localhost-cert.pem')
});
server.on('error', (err) => console.error(err));

server.on('stream', (stream, headers) => {
  // stream is a Duplex
  stream.respond({
    'content-type': 'text/html',
    ':status': 200
  });
  stream.end('<h1>Hello World</h1>');
});

server.listen(8443);

const http2 = require('http2');
const fs = require('fs');
const client = http2.connect('https://localhost:8443', {
  ca: fs.readFileSync('localhost-cert.pem')
});
client.on('error', (err) => console.error(err));

const req = client.request({ ':path': '/' });

req.on('response', (headers, flags) => {
  for (const name in headers) {
    console.log(`${name}: ${headers[name]}`);
  }
});

req.setEncoding('utf8');
let data = '';
req.on('data', (chunk) => { data += chunk; });
req.on('end', () => {
  console.log(`\n${data}`);
  client.close();
});
req.end();

假设我有一个JSON对象,我想将其写入客户端中的流并从服务器中的流中读取,反之亦然。如何正确执行此操作?

我可以将JSON字符串化为str并使用request.write(str, 'utf-8),但这是最佳方法吗?以及如何在另一端监听JSON以处理它?<​​/ p>

1 个答案:

答案 0 :(得分:1)

服务器...


const http2 = require('http2');
const fs = require('fs');

const server = http2.createSecureServer({
  key: fs.readFileSync('localhost-privkey.pem'),
  cert: fs.readFileSync('localhost-cert.pem')
});

server.on('error', (err) => {
  console.error(err)
});

server.on('stream', (stream, headers) => {
  // stream is a Duplex
  
  // headers[:path] is the normal request from browser. A path url.

  console.log("Request from client: " + headers[:path]);
  

  req.on("data", (data) => {
    console.log("Data from HTTPS2 client(event): " + data);
    // It is just the data from 'POST' method.
  });



stream.respond({
    'content-type': 'text/html',
    ':status': 200
  });

  stream.end('<h1>Hello World</h1> Or a string, other data, wherever you want...');

});

server.listen(8443);

客户。可以是“GET”或“POST”方法中的 XHR 请求。服务器端是一样的。 'GET' 模式使用 method = GET 并删除 "req.end('XXX any string. bla, bla, bla');"

const http2 = require('http2');
const fs = require('fs');


const client = http2.connect('https://localhost:8443', {
  ca: fs.readFileSync('localhost-cert.pem')
});


client.on('error', (err) => {
  console.error(err)
});

//':method': 'GET/POST' Can be just one.
const req = client.request({ ':method': 'POST', ':path': '/' });

req.on('response', (headers, flags) => {
  for (const name in headers) {
    console.log(`${name}: ${headers[name]}`);
  }
});

req.setEncoding('utf8');
let data = '';

//Data from HTTPS2 server.
req.on('data', (chunk) => { 

  data += chunk; 

});

req.on('end', () => {
  console.log(`\n${data}`);
  client.close();
});

//Only for POST method.
req.end("The data you want to send. String, JSON, buffer whatever...");