constfs=require('fs');constqs=require('querystring');require('http').createServer(function(req,res){if(req.url==='/'){res.writeHead(200,{'content-type':'text/html'});res.end(['', '', '', '',//''].join(''))}elseif('/url'===req.url&&req.method==='POST'){res.writeHead(200,{'content-type':'text/plain'});varbody='';req.on('data',function(chunk){body+=chunk;});console.log(body)//无输出res.end('helloworld'+qs.parse(body).name+'end')//输出undefined}}).listen(3000);为什么在表单中输入数据后提交无法被node获得,body变量无内容??
FFIVE
神不在的星期二
相关分类