如何在 Laravel 中获取 HTTP 请求正文内容?

新手上路,请多包涵

我正在使用 Laravel 5 制作 API,并且正在使用 PHPUnit 对其进行测试。我需要测试遗留功能的兼容性,这是一个 XML POST。截至目前,我的第一个测试看起来像:

 public function testPostMessages()
{
    $response = $this->call('POST', 'xml');

    $this->assertEquals(200, $response->getStatusCode());
}

这过去就好了。我列表中的下一个实际上是使用 POST 发送 XML 数据。所以对于我的第二次测试,我有:

 public function testPostMessagesContent()
{
    $response = $this->call('POST', 'xml');

    $this->assertTrue(is_valid_xml($response->getContent()));
}

此测试失败。但是,我没有发送我的 XML 数据。 如何发送我的 XML?

现在,之后我需要添加从请求中获取内容的功能。我知道有一个 Request 我可以与之交互的对象,但我不知道要调用哪个方法。 如何从控制器内部获取 XML?


更新#1

在此期间,我能够得到一些结果。我当前的测试如下所示:

 public function testPostMessagesContent()
{
    $response = $this->call('POST', 'xml', array('key' => 'value'), array(), array(), array('content' => 'content'));
    $this->assertContains('~', $response->getContent());
}

我在那里只有波浪号,因为我知道它不匹配,所以我可以看到整个响应。在 XmlController.php 我有:

 class XmlController extends Controller {
public function index(Request $request)
{
    return $request;
    }
}

我从 PHPUnit 的输出如下:

 1) XmlTest::testPostMessagesContent
Failed asserting that 'POST xml HTTP/1.1
Accept:          text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Charset:  ISO-8859-1,utf-8;q=0.7,*;q=0.7
Accept-Language: en-us,en;q=0.5
Content-Type:    application/x-www-form-urlencoded
Host:            localhost
User-Agent:      Symfony/2.X
' contains "~".

我的参数和内容在哪里?我觉得我只是错误地使用了 call()


更新#2

我更新了我的控制器以使用 Request:all() 像这样:

 class XmlController extends Controller
{
    public function index()
   {
        $content = Request::all();
        return $content;
    }
}

这返回了我的键值对,但没有返回内容。

 1) XmlTest::testPostMessagesContent
Failed asserting that '{"key":"value"}' contains "~".

键值对很好;这是进步。但是,我真正需要的是内容,因为我将在请求的内容部分接收该数据。如果我使用 Request::getContent() 我会得到一个空白字符串。这是我在测试中的调用:

 $response = $this->call('POST', 'xml', array('key' => 'value'), array(), array(), array('content' => 'content'));

这是我的测试结果:

 1) XmlTest::testPostMessagesContent
Failed asserting that '' contains "~".


更新#3

我根本无法获取 HTTP 请求的内容正文。由于 XML 不起作用,我继续使用我的 API 的 REST 部分,它使用 JSON。这是我的一项测试:

 public function testPostMessagesContent()
{
    $response = $this->call('POST', 'messages', ['content' => 'content']);

    $this->assertEquals('saved!', $response->getContent());
}

该测试通过。如果我使用 curl,我也会成功拨打电话:

 curl -X POST -d "content=my_new_content" "http://localhost:8000/messages"

这将返回 'saved!' 这太棒了,但是如果我尝试在独立的 PHP 脚本(模拟客户端)中使用 curl,则会返回以下内容:

 Array ( [url] => http://localhost:8000/messages [content_type] => text/html; charset=UTF-8 [http_code] => 302 [header_size] => 603 [request_size] => 118 [filetime] => -1 [ssl_verify_result] => 0 [redirect_count] => 0 [total_time] => 0.063977 [namelookup_time] => 0.000738 [connect_time] => 0.000866 [pretransfer_time] => 0.000943 [size_upload] => 12 [size_download] => 328 [speed_download] => 5126 [speed_upload] => 187 [download_content_length] => -1 [upload_content_length] => 12 [starttransfer_time] => 0.057606 [redirect_time] => 0 [certinfo] => Array ( ) [primary_ip] => ::1 [primary_port] => 8000 [local_ip] => ::1 [local_port] => 63248 [redirect_url] => http://localhost:8000 [request_header] => POST /messages HTTP/1.1 Host: localhost:8000 Accept: */* Content-type: text/xml Content-length: 12 ) Redirecting to http://localhost:8000.

这是我添加 POST 字段的 curl 命令:

 curl_setopt($ch, CURLOPT_POSTFIELDS, 'content=test');

在我看来,POSTFIELDS 正在被添加到请求的正文中。在这种情况下,我仍然有同样的问题。我无法获取我的 HTTP 标头的正文内容。注释掉我的验证后,我得到:

 Array ( [url] => http://localhost:8000/messages [content_type] => text/html; charset=UTF-8 [http_code] => 200 [header_size] => 565 [request_size] => 118 [filetime] => -1 [ssl_verify_result] => 0 [redirect_count] => 0 [total_time] => 0.070225 [namelookup_time] => 0.000867 [connect_time] => 0.00099 [pretransfer_time] => 0.001141 [size_upload] => 12 [size_download] => 6 [speed_download] => 85 [speed_upload] => 170 [download_content_length] => -1 [upload_content_length] => 12 [starttransfer_time] => 0.065204 [redirect_time] => 0 [certinfo] => Array ( ) [primary_ip] => ::1 [primary_port] => 8000 [local_ip] => ::1 [local_port] => 63257 [redirect_url] => [request_header] => POST /messages HTTP/1.1 Host: localhost:8000 Accept: */* Content-type: text/xml Content-length: 12 ) saved!

所以我有我的 'saved!' 消息。伟大的!但是,在我的数据库中,现在我有一个空白行。不是很好。它仍然没有看到正文内容,只有标题。


回答标准

我正在寻找这些问题的答案:

  1. 为什么我无法获取请求的正文内容?
  2. 如何获取请求的正文内容?

原文由 beznez 发布,翻译遵循 CC BY-SA 4.0 许可协议

阅读 544
2 个回答

内部控制器注入请求对象。因此,如果您想访问控制器方法 ‘foo’ 中的请求正文,请执行以下操作:

 use Illuminate\Http\Request;

    public function foo(Request $request){
        $bodyContent = $request->getContent();
    }

原文由 gandra404 发布,翻译遵循 CC BY-SA 4.0 许可协议

我认为您不需要 Request 中的数据,我认为您想要 Response 中的数据。两者是不同的。此外,您应该在控制器中正确构建响应。

查看编辑 #2 中的类,我将使其看起来像这样:

 class XmlController extends Controller
{
    public function index()
    {
        $content = Request::all();
        return Response::json($content);
    }
}

一旦你走到了这一步,你应该在你的测试用例中检查你的响应内容(如果需要,使用 print_r),你应该看到里面的数据。

有关 Laravel 响应的更多信息,请点击此处:

http://laravel.com/docs/5.0/responses

原文由 delatbabel 发布,翻译遵循 CC BY-SA 3.0 许可协议

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题