Slim 3 getParsedBody() always null and empty

2019-07-11 07:16发布

I'm am using the Slim Framework Version 3 and have some problems.

$app-> post('/', function($request, $response){
  $parsedBody = $request->getParsedBody()['email'];
  var_dump($parsedBody);
});

result is always:

null

Can you help me ?

2条回答
我欲成王,谁敢阻挡
2楼-- · 2019-07-11 07:54

Please, try this way:

$app-> post('/yourFunctionName', function() use ($app) {
  $parameters = json_decode($app->request()->getBody(), TRUE);
  $email = $parameters['email'];
  var_dump($email);
});

I hope this helps you!

查看更多
男人必须洒脱
3楼-- · 2019-07-11 08:11

It depends how you are sending data to the route. This is a POST route, so it will expect the body data to standard form format (application/x-www-form-urlencoded) by default.

If you are sending JSON to this route, then you need to set the Content-type header to application/json. i.e. the curl would look like:

curl -X POST -H "Content-Type: application/json" \
  -d '{"email": "a@example.com"}' http://localhost/

Also, you should validate that the array key you are looking for is there:

$parsedBody = $request->getParsedBody()
$email = $parsedBody['email'] ?? false;
查看更多
登录 后发表回答