无法使用Express发布出错

无法使用Express发布出错,第1张

无法使用Express发布/出错

这样你应该尝试

const port = 3000;var express = require('express'),    app = express();var bodyParser = require('body-parser');app.use(express.static(__dirname + '/public'));app.use(bodyParser.urlenpred({   extended: false}));app.use(bodyParser.json());app.get('/', function(req, res){  res.render('form');// if jade  // You should use one of line depending on type of frontend you are with  res.sendFile(__dirname + '/form.html'); //if html file is root directory res.sendFile("index.html"); //if html file is within public directory});app.post('/',function(req,res){   var username = req.body.username;   var htmlData = 'Hello:' + username;   res.send(htmlData);   console.log(htmlData);});app.listen(port);

您将来应该记住的事情参考:

  1. 您将url编码扩展为true
  2. 您没有任何要求获取表格的请求
  3. 您正在使用HTML命名变量,这是不良做法之一

谢谢与欢呼



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5087740.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-16
下一篇 2022-11-16

发表评论

登录后才能评论

评论列表(0条)

保存