1
   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 命令正在执行。我缺少什么基本的东西吗?我需要的是我的程序应该根据方法读取所有标题。

4

1 回答 1

1

应该if (request.method === 'PUT') {

即你需要两个或三个等号,而不仅仅是一个。

于 2012-10-25T06:54:12.993 回答