我正在使用Sliex框架。当我使用\Silex\Application::redirect
方法时,我遇到了重定向问题。我发现当我尝试通过http-headers重定向时,而不是symfony“send”,响应似乎调用了__toString
方法。
这是我的卷曲输出:
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');
登录操作没有逻辑,只是渲染一个树枝模板。
答案 0 :(得分:1)
调用$ app-&gt; redirect()会返回一个新的RedirectResponse对象,其默认状态为302.
以下内容直接来自Symfony Response Object Documentation
要在Symfony Response对象上设置标头,请使用 =VLOOKUP(A2,Sheet1!A:B,2,0)
方法。
Category
一旦方法名称中的拼写错误得到纠正(Contorller更改为Controller),您的代码就能完美运行。
headers->set