我使用表单数据 id = 1
发帖并使用getparams方法,如$request->getParams('id')
我得到了ID。
现在我通过 Json
进行查询POST localhost / books_example / public / apiv1
身体是:
{“id”:“1”}
此处$request->getParams('id')
,$request->getParams()
和$request->getBody()
不起作用。现在,我怎样才能获得id参数?
答案 0 :(得分:1)
从changes['text']
获取请求正文并将其传递给php://input
。
json_decode()
您要查找的值将在$data = json_decode(file_get_contents('php://input'));
。