我用node.js编写了一个脚本(基于web信标像素),需要设置cookie并向客户端发送一个像素。
我的问题是,cookie没有设置,如果我从代码中删除的部分,发送GIF的工作,但我找不到一种方法,使这2件事一起设置一个cookie,并发送GIF回来。
http = require('http');
url = require('url');
http.createServer(function(req, res){
var requestURL = url.parse(req.url, true);
if (requestURL.pathname == '/log.gif') {
// Write a Cookie
res.writeHead(200, {
'Set-Cookie' : 'id='+requestURL.query.id+'; expires=' + new Date(new Date().getTime()+86409000).toUTCString()
});
var imgHex = '47494638396101000100800000dbdfef00000021f90401000000002c00000000010001000002024401003b';
var imgBinary = new Buffer(imgHex, 'hex');
res.writeHead(200, {'Content-Type': 'image/gif' });
res.end(imgBinary, 'binary');
} else {
res.writeHead(200, {'Content-Type': 'text/plain' });
res.end('');
}
}).listen(8080);
http://nodejs.org/api/http.html#http_response_writehead_statuscode_reasonphrase_headers:
"此方法只能在消息中调用一次"
只需在res.WriteHead
调用中添加Set-Cookie头,设置Content-type:
res.writeHead(200, {
'Content-Type': 'image/gif',
'Set-Cookie' : '…'
});