当前位置 : 主页 > 网络编程 > PHP >

PHP学习笔记:Laravel获取提交的原始数据

来源:互联网 收集:自由互联 发布时间:2023-09-03
(目录) 测试环境 composer.json { require: { php: ^8.0.2, laravel/framework: ^9.19, }} 获取方式 获取接口提交的原始数据 // 使用5.6之前的PHP,则php://input流只能读取一次$body = file_get_contents('php://input')

(目录)

测试环境

composer.json

{
    "require": {
        "php": "^8.0.2",
        "laravel/framework": "^9.19",
    }
}

获取方式

获取接口提交的原始数据

// 使用5.6之前的PHP,则php://input流只能读取一次
$body  = file_get_contents('php://input');

// 或者
$body  = $request->getContent()

备注:在PhpStrom中会提示,忽略即可,代码是可以正常运行的

Method 'getContent' not found in \Illuminate\Http\Request 

代码示例

public function getContent(Request $request): array
    {
        $body  = $request->getContent();
        $input = $request->input();

        Log::debug($body);
        Log::debug($input);

        return [
            'body'  => $body,
            'input' => $input
        ];
    }

提交数据

POST {{api_url}}/test/getContent
Accept: application/json
Content-Type: application/json; charset=utf-8

{
    "name":  "post_name"
}

数据返回

{
    "body": "{\n    \"name\":  \"post_name\"\n}",
    "input": {
      "name": "post_name"
    }
  }

参考文章

  • 如何在laravel中获取原始表单数据?
网友评论