我只是想做一个PUT请求使用Mongoose数据库。但无法提出任何要求。我正在使用 Postman 传递数据,但没有响应。
script.js
app.route("/articles/:articleTitle")
.put(function (req, res) {
Article.updateMany(
{ title: req.params.articleTitle },
{ title: req.body.title, content: req.body.content },
{ overwrite: true },
function (err) {
if (!err) {
res.send("Successfully Updated The Data !");
}
}
);
});
这是我用来在我的本地主机服务器上传递PUT请求的代码,但是不能这样做。
No Response Here Is The Result
3条答案
按热度按时间pbossiut1#
如果出现错误,您不会发送任何响应,导致请求挂起并且永远不会返回。将其更改为例如:
2izufjch2#
iecba09b3#