我正在尝试使用邮递员测试我的路线。但是,我正在发出请求,但出现错误错误:意外字段。我不确定为什么会收到此错误。这是我的职位要求代码。如果将image:req.file放在新的列表变量中会有所帮助吗?感谢您的帮助。
router.post(
"/",
passport.authenticate("jwt", {
session: false
}),upload.single("productImage"),
(req, res) => {
console.log(req.file);
const { errors, isValid } = validateListingInput(req.body);
// if (!isValid) {
return res.status(400).json(errors);
}
const newListing = new Listing({
username: req.body.username,
user: req.user.id,
price: req.body.price,
size: req.body.size
});
newListing.save().then(post => res.json(post));
}
);