我试图用gzip发送文本,但我不知道如何发送。在示例中,代码使用fs,但是我不想发送文本文件,而只是发送字符串。
const zlib = require('zlib'); const http = require('http'); http.createServer(function (req, res) { res.writeHead(200, {'Content-Type': 'text/html', 'Content-Encoding': 'gzip'}); const text = "Hello World!"; res.end(text); }).listen(80);
你在那儿。我可以衷心地同意,该文档还不足以使您了解如何执行此操作。
const zlib = require('zlib'); const http = require('http'); http.createServer(function (req, res) { res.writeHead(200, {'Content-Type': 'text/html', 'Content-Encoding': 'gzip'}); const text = "Hello World!"; const buf = new Buffer(text, 'utf-8'); // Choose encoding for the string. zlib.gzip(buf, function (_, result) { // The callback will give you the res.end(result); // result, so just send it. }); }).listen(80);
一个简化就是不使用Buffer;。
Buffer
http.createServer(function (req, res) { res.writeHead(200, {'Content-Type': 'text/html', 'Content-Encoding': 'gzip'}); const text = "Hello World!"; zlib.gzip(text, function (_, result) { // The callback will give you the res.end(result); // result, so just send it. }); }).listen(80);
…似乎默认情况下会发送UTF-8。但是,当没有默认行为比其他行为更有意义并且我无法立即通过文档进行确认时,我个人宁愿走安全的道路。
同样,如果您需要传递JSON对象,则可以:
const data = {'hello':'swateek!'} res.writeHead(200, {'Content-Type': 'application/json', 'Content-Encoding': 'gzip'}); const buf = new Buffer(JSON.stringify(data), 'utf-8'); zlib.gzip(buf, function (_, result) { res.end(result); });