超薄3 getParsedBody()始终为空

2022-06-13 00:00:00 null php slim slim-3

我正在使用超薄框架版本3,遇到一些问题。

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

结果始终为:

你能帮我吗?


解决方案

这取决于您将数据发送到路由的方式。这是POST路由,因此默认情况下,它将正文数据设置为标准格式(application/x-www-form-urlencoded)。

如果要将JSON发送到此路由,则需要将Content-type头设置为application/json。例如,卷曲将如下所示:

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

此外,您还应该验证您要查找的数组密钥是否存在:

$parsedBody = $request->getParsedBody()
$email = $parsedBody['email'] ?? false;

相关文章