问题:我收到一个对我的服务器应用程序的传入 HTTP 请求。请求是这样的:http ://example.com?id=abc 。我需要解析这个请求,修补额外的 URL 参数并调用一个托管的 html 文件。所以:
http://example.com?id=abc => http://example.com:8080/temp.html?id=abc&name=cdf。
所以客户端应该看到 temp.html
这是代码:
function onRequest(request,response) {
if(request.method =='GET') {
sys.debug("in get");
var pathName = url.parse(request.url).pathname;
sys.debug("Get PathName" + pathName + ":" + request.url);
var myidArr = request.url.split("=");
var myid = myidArr[1];
//Call the redirect function
redirectUrl(myid);
}
http.createServer(onRequest).listen(8888);
function redirectUrl(myid) {
var temp='';
var options = {
host: 'localhost',
port: 8080,
path: '/temp.html?id=' + myid + '&name=cdf',
method: 'GET'
};
var req = http.request(options, function(res) {
console.log('STATUS: ' + res.statusCode);
console.log('HEADERS: ' + JSON.stringify(res.headers));
res.setEncoding('utf8');
res.on('data', function (chunk) {
temp = temp.concat(chunk);
});
res.on('end', function(){
return temp;
});
});
req.end();
return temp;
}
尽管这是解决此问题的一种非常愚蠢的方法,但我确实在 res.end() 回调中看到了响应。如何将此传播到父调用函数 onRequest ?
仅使用 node 是否有更简单的方法?我知道有一些方法可以提供静态 html 文件。但是,我需要将 URL 参数传递给 temp.html - 所以我不确定如何执行此操作。