无法读取表单输入值 |节点 |快递 |快速车把
Cannot read form input value | nodejs | express | express-handlebars
我尝试使用 express handlebars 通过表单请求接收用户的输入值。我收到以下错误。
TypeError: 无法读取未定义的 属性 'personname'
以下图片包含代码片段
index.js home.handlebars
请帮我解决问题
Express 默认不会为您解析 req.body
。需要中间件,最好是body-parser
const app = require('express')()
const bodyparser = require('body-parser')
app.use(bodyparser.json());
app.use(bodyparser.urlencoded({extended: true}));
我尝试使用 express handlebars 通过表单请求接收用户的输入值。我收到以下错误。
TypeError: 无法读取未定义的 属性 'personname'
以下图片包含代码片段
index.js home.handlebars
请帮我解决问题
Express 默认不会为您解析 req.body
。需要中间件,最好是body-parser
const app = require('express')()
const bodyparser = require('body-parser')
app.use(bodyparser.json());
app.use(bodyparser.urlencoded({extended: true}));