0

我正在尝试制作更新功能,用户可以在其中放置新数据并且服务器中的数据将得到更新,这是一项简单的任务,但是,当我尝试 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

4

1 回答 1

2

使用 PUT 或 POST,数据位于请求的正文中。您必须有一些代码(在您的请求处理程序或一些中间件中)实际从流中读取正文并body为您填充属性。如果您没有,那么数据仍然位于请求流中等待读取。

你可以在这里看到一个自己阅读的例子:https ://github.com/koajs/koa/issues/719或者有预建的中间件可以为你做这件事。

这里有几个模块可以为你做这个中间件:

https://github.com/dlau/koa-body

https://www.npmjs.com/package/koa-body-parser

于 2019-09-26T22:17:10.120 回答