我有一个ejs页面,该页面具有大量表单输入。有没有办法从ejs页面获取这些输入并将它们传递回服务器? 我知道如何通过服务器将变量传递到ejs页面,但是有相反的方法吗?基本上,我在问是否有一种方法可以从客户端传递到服务器。
答案 0 :(得分:1)
您可以使用express + body解析器制作post api:
router.post('/myapi', (req, res) => {
// Do some stuff with the req body data
name: req.body.name,
email: req.body.email,
otherStuff: req.body.stuff
}