我正在尝试制作更新功能,用户可以在其中放置新数据并且服务器中的数据将得到更新,这是一项简单的任务,但是,当我尝试 PUT 新数据时,正文始终未定义。
发送的数据:
request: {
method: 'PUT',
url: '/api/v1.0/articles/1',
header: {
'user-agent': 'PostmanRuntime/7.17.1',
accept: '*/*',
'cache-control': 'no-cache',
host: 'localhost:3000',
'accept-encoding': 'gzip, deflate',
'content-length': '98',
connection: 'keep-alive'
}
},
response: {
status: 404,
message: 'Not Found',
header: [Object: null prototype] {}
},
现在我尝试使用其他方法而不是 RAW 方法将它作为键传递,这就是我试图传递的身体内部的内容:
{
"title": "another article",
"fullText": "again here is some text hereto fill the body"
}
这是应该更新数据的函数,但它从 put 请求中未定义。
router.put("/:id", updateArticle);
function updateArticle(cnx, next) {
let id = parseInt(cnx.params.id);
console.log(cnx);
if (articles[id - 1] != null) {
//articles[id - 1].title = cnx.request.body.title;
cnx.body = {
message:
"Updated Successfully: \n:" + JSON.stringify(updateArticle, null, 4)
};
} else {
cnx.body = {
message:
"Article does not exist: \n:" + JSON.stringify(updateArticle, null, 4)
};
}
}
我正在使用邮递员,Body -> Raw | JSON,我不得不提到所有其他方法都可以正常工作 - 删除、创建、getAll、getById