gpt4 book ai didi

javascript - 提交表单后 req 为空 jade

转载 作者:行者123 更新时间:2023-11-30 09:58:04 25 4
gpt4 key购买 nike

我在 Jade 中的表单是

extends layout

block content
h1= title
form(action="create", method="post")
div.input
span.label Username
input(type="text", name="username")
div.input
span.label Password
input(type="password", name="password")
div.actions
input(type="submit", value="Create User")

我的 index.js 是

var express = require('express');
var bodyParser = require('body-parser')
var app = express();
app.route('/create')
.get(function (req, res) {
res.render('formUser', {
title: 'Create User'
});
})
.post(function (req, res) {

console.log(req);

});

为什么我的 req.body 或 req.params 是空的?如何找回用户名和密码?

谢谢

最佳答案

还不够

var bodyParser = require('body-parser')

你还必须添加

app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: false }));

关于javascript - 提交表单后 req 为空 jade,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33066221/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com