douqian8238 2017-02-13 07:40
浏览 316
已采纳

Slim 3 getParsedBody()始终为null且为空

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条回答 默认 最新

  • dtueufe82643 2017-02-17 09:12
    关注

    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;
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 Llama如何调用shell或者Python
  • ¥20 谁能帮我挨个解读这个php语言编的代码什么意思?
  • ¥15 win10权限管理,限制普通用户使用删除功能
  • ¥15 minnio内存占用过大,内存没被回收(Windows环境)
  • ¥65 抖音咸鱼付款链接转码支付宝
  • ¥15 ubuntu22.04上安装ursim-3.15.8.106339遇到的问题
  • ¥15 blast算法(相关搜索:数据库)
  • ¥15 请问有人会紧聚焦相关的matlab知识嘛?
  • ¥15 网络通信安全解决方案
  • ¥50 yalmip+Gurobi