我想显示提交的值?

时间:2018-05-07 07:55:44

标签: javascript html node.js

这是我的代码!!

var http = require('http');
var formidable = require('formidable');

http.createServer(function (req, res) {
  if (req.url == '/fileupload') {
    var form = new formidable.IncomingForm();
    form.parse(req, function (err, fields, files) {
      res.write('File uploaded');
      res.end();
    });
  } else {
    res.writeHead(200, {'Content-Type': 'text/html'});
    res.write('<form action="fileupload" method="post" enctype="multipart/form-data">');
    res.write('<input type="file" name="filetoupload"><br>');
   res.write('User name:<br> <input type="Text" Name="User Name"><br>');
   res.write('User Phone:<br><input type="Text" Name="User Phone"><br>');
   res.write('User E-mail:<br><input type="Text" Name="User E-mail"><br>');
    res.write('<input type="submit">');
    res.write('</form>');
    console.log();
    return res.end();

  }
}).listen(8080);

我想显示我在此代码中使用的所有提交值。 请帮我这个代码中的错误!!

1 个答案:

答案 0 :(得分:0)

您可以在控制台中打印值:

console.log(JSON.stringify(fields));
console.log(files);

在网页上打印值:

res.write(JSON.stringify(fields));
console.log(files);