使用node-http-proxy代理对流浪盒的请求时,修改Gzipped HTML响应会产生白屏。
拦截请求的方法&修改html(见下文)适用于所有未经过Gzip压缩的请求。 (我已经使用node,ruby,PHP和apache服务器测试过。)
我有一个启动代理和测试套件的测试套件提出要求。如果我在console.log中响应,我可以清楚地看到HTML已被修改 - 只是它根本不会在浏览器中显示...
var server = httpProxy.createServer(function (req, res, proxy) {
var next = function () {
proxy.proxyRequest(req, res, {
host: "172.22.22.22",
port: 80,
changeOrigin: true
});
};
var write = res.write;
res.write = function (string, encoding) {
var body = string instanceof Buffer ? string.toString() : string;
body = body.replace(/<\/body>/, function (w) {
return "<script>console.log('injected')</script>\n" + w;
});
if (string instanceof Buffer) {
string = new Buffer(body);
} else {
string = body;
}
write.call(res, string, encoding);
};
next();
}).listen(3002);
// Remove content-length, defaults to 'chunked'
server.proxy.on("proxyResponse", function (req, res, response) {
if (response.headers.hasOwnProperty("content-length")) {
delete response.headers["content-length"];
}
});
it("can modify the html response", function (done) {
var data;
http.get(proxyHost, function (res) {
var chunks = [];
res.on("data", function (chunk) {
chunks.push(chunk.toString());
});
res.on("end", function () {
data = chunks.join("");
console.log(data); // snippet can be seen in this response
done();
});
});
});
有什么想法吗?
答案 0 :(得分:0)
我已经解决了这个问题。
无法上传来源,但我可以给你一些提示。
希望这可以帮到你。