http.createServer(function (request, response) {
request.on("end", function () {
if(request.method='PUT')
{
buf1='This is PUT';
console.log('received PUT');
}
response.writeHead(200, {
'Content-Type': 'text/plain'
});
response.end('Hello HTTP!'+buf1);
});
我看到即使我也只是尝试执行 GET,PUT 命令正在执行。我缺少什么基本的东西吗?我需要的是我的程序应该根据方法读取所有标题。