我在视图上有以下代码
var fd = new FormData();
fd.append("hello", "world");
fetch('/vision', {
method: 'post',
"content-type": "application/json; charset=utf-8",
body: JSON.stringify({
hello: "world"
})
})
.then(data => {
debugger;
})
和要处理的行动
visionRouter.post("/", (req, res) => {
vision.detectText(imageUrl, (err, text) => {
res.send(text);
})
});
路线被击中,但req.body
不存在。如何使用表达式获取fetch和FormData?
答案 0 :(得分:1)
您需要使用body-parser
节点模块。像这样安装
npm install body-parser
然后在你的代码中执行此操作
var bodyParser = require("body-parser");
visionRouter.use(bodyParser.json());
现在,您的req.body
将能够访问您要发送的JSON数据