nodejs作为代理服务器时,如何修改返回的HTML代码?
proxy.on(‘proxyRes’, function (proxyRes, request, response){ proxyRes.on(‘end’,function(){ if(proxyRes.headers[‘content-type’]==‘text/html;charset=utf-8’){ proxyRes.write(‘hhhhhhhhhhh’); //这个是错误的 } }) })
代码如上,用了http-proxy的代码,监听了响应事件,怎么才能修改响应的内容呢?
1 回复
关注