【发布时间】:2020-12-18 16:21:13
【问题描述】:
【问题讨论】:
-
请编辑您的问题并添加 code-sn-ps 而不是图像。
【问题讨论】:
在您的'transactions'-handler 中,您调用了两次res.send()。您只能执行一次,因此将其更改为例如
app.post('/transactions', (req,res) => {
res.send(`The amount ... is ${req.body.amount}...`);
})
【讨论】: