服务器监听localhost:8080
PhantomJS 收听localhost:8081
代理设置,以便从服务器
向 PhantomJS 发送请求var proxy = httpProxy.createProxyServer({ target: 'http://localhost:8081'});
var server = http.createServer(function(req, res) {
if (req.url === '/phantom') proxy.web(req, res);
else res.end('yes yes');
});
server.listen(8080);
向http://localhost:8080/phantom
发送请求(服务器代理)已经"未定义" request.post
向http://localhost:8081/
(PhantomJS)发布请求已填充request.post
我必须做什么才能通过代理接收发布数据?
答案 0 :(得分:-1)
尝试127.0.0.1替换localhost