Nuxt:使用NuxtJS服务器中间件修改代理服务器的响应



如本文所述,我使用NuxtJS服务器中间件作为代理通行证将传入请求代理到内部服务,以避免跨域问题。

const httpProxy = require('http-proxy')
const proxy = httpProxy.createProxyServer()
const API_URL = 'https://api.mydomain.com'
export default function(req, res, next) {
proxy.web(req, res, {
target: API_URL
})
}

我如何分析代理服务器的响应,并可能在此级别对其进行修改?

我在http代理文档中找到了一个例子。要修改响应,selfHandleResponse必须设置为true。以下是文档中的示例:

var option = {
target: target,
selfHandleResponse : true
};
proxy.on('proxyRes', function (proxyRes, req, res) {
var body = [];
proxyRes.on('data', function (chunk) {
body.push(chunk);
});
proxyRes.on('end', function () {
body = Buffer.concat(body).toString();
console.log("res from proxied server:", body);
res.end("my response to cli");
});
});
proxy.web(req, res, option);

如果请求与某个url匹配,下面的代码允许我处理代理的答案,否则只转发(管道(它。

proxy.once('proxyRes', function(proxyRes, req, res) {
if (!req.originalUrl.includes('api/endpoint')) {
res.writeHead(proxyRes.statusCode) // had to reset header, otherwise always replied proxied answer with HTTP 200
proxyRes.pipe(res)
} else {
// modify response
let body = []
proxyRes.on('data', function(chunk) {
body.push(chunk)
})
proxyRes.on('end', function() {
body = Buffer.concat(body).toString()
console.log('res from proxied server:', body)
res.end('my response to cli')
})
}
})

注意,我添加了用once()替换.on()以使其工作。

相关内容

  • 没有找到相关文章

最新更新