超薄3如何获得Post mothod身体

时间:2017-01-13 15:05:56

标签: php json slim

我使用表单数据 id = 1发帖并使用getparams方法,如$request->getParams('id')我得到了ID。

现在我通过 Json

进行查询
  

POST localhost / books_example / public / apiv1

身体是:

  

{“id”:“1”}

此处$request->getParams('id')$request->getParams()$request->getBody()不起作用。现在,我怎样才能获得id参数?

1 个答案:

答案 0 :(得分:1)

changes['text']获取请求正文并将其传递给php://input

json_decode()

您要查找的值将在$data = json_decode(file_get_contents('php://input'));