gpt4 book ai didi

php - Symfony 响应对象如何设置 http header ?

转载 作者:可可西里 更新时间:2023-10-31 23:40:15 24 4
gpt4 key购买 nike

我正在使用 Sliex 框架。我在使用 \Silex\Application::redirect 方法时遇到重定向问题。我发现当我试图通过 http-headers 重定向时,而不是 symfony“发送”响应似乎调用了 __toString 方法。

这是我的 curl 输出:

bash-4.2$ curl -v http://127.0.0.1:8082/
* About to connect() to 127.0.0.1 port 8082 (#0)
* Trying 127.0.0.1...
* Adding handle: conn: 0x1ea0970
* Adding handle: send: 0
* Adding handle: recv: 0
* Curl_addHandleToPipeline: length: 1
* - Conn 0 (0x1ea0970) send_pipe: 1, recv_pipe: 0
* Connected to 127.0.0.1 (127.0.0.1) port 8082 (#0)
> GET / HTTP/1.1
> User-Agent: curl/7.32.0
> Host: 127.0.0.1:8082
> Accept: */*
>
< HTTP/1.1 200 OK
< Date: Sat, 20 Sep 2014 08:02:52 GMT
* Server Apache/2.4.10 (Fedora) PHP/5.5.15 is not blacklisted
< Server: Apache/2.4.10 (Fedora) PHP/5.5.15
< X-Powered-By: PHP/5.5.15
< Set-Cookie: PHPSESSID=*****; path=/
< Content-Length: 116
< Content-Type: text/html; charset=UTF-8
<
HTTP/1.0 302 Found
Cache-Control: no-cache
Date: Sat, 20 Sep 2014 08:02:52 GMT
Location: /login

* Connection #0 to host 127.0.0.1 left intact

我不明白为什么,但它会回应 http-headers。

更新

我的脚本是这样的:

<?php class Contorller {
public action( \Silex\Application $app ){
return $app->redirect('/login');
}
}

路由脚本:

<?php
$core = new \Silex\Application;
$core->get("/another/action", "\\Controller::action")
$core->match("/login","\\AnotherController::login")->method('POST|GET');

登录操作没有逻辑,它只是呈现一个 Twig 模板。

最佳答案

调用 $app->redirect() 返回一个新的 RedirectResponse默认状态为 302 的对象。

以下直接摘自Symfony Response Object Documentation

要在 Symfony Response 对象上设置 header ,请使用 headers->set 方法。

use \Symfony\Component\HttpFoundation\RedirectResponse;

class Controller {
public function action( \Silex\Application $app ){

$response = new RedirectResponse('/login', 302);

// the headers public attribute is a ResponseHeaderBag
$response->headers->set('Content-Type', 'text/plain');

return $response;
}
}

一旦方法名称中的拼写错误得到更正(Contorller 更改为 Controller),您的代码将完美运行。

class Controller {
public function action( \Silex\Application $app ){
return $app->redirect('/login', 302);
}
}

class AnotherController {
public function login( \Silex\Application $app ){
return new Response($app['twig']->render('blank.html.twig'));
}
}

$app->get("/another/action", "\Controller::action");
$app->match("/login","\AnotherController::login")->method('POST|GET');

关于php - Symfony 响应对象如何设置 http header ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25946655/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com