我试图将两个值 name 和 company 传递给服务器,但它总是将它们作为字符串传递。
app.post('/visitors/store', (req, res) => {
const name = req.body.name; (User1)
const company = req.body.company; (Google)
con.query("INSERT INTO visitors(name, company) VALUES(`name`,`company`)", (results) => {
res.json(results);
});
})
name问题出在“VALUES( , company)”行的这一部分
数据库 atm 中的结果: name = name , company = company
我需要的结果是:name = User1,company = Google
谢谢你的帮助
繁花不似锦
慕后森