我希望能够设置单个 cookie,并在每次向 nodejs 服务器实例发出请求时读取该 cookie。只需要几行代码就可以完成,而不需要引入第三方库吗?
var http = require('http');
http.createServer(function (request, response) {
response.writeHead(200, {'Content-Type': 'text/plain'});
response.end('Hello World\n');
}).listen(8124);
console.log('Server running at http://127.0.0.1:8124/');
只是尝试直接从 nodejs.org 获取上面的代码,并在其中添加 cookie。