这是我的代码,
class LoginController
{
public function authUser()
{
return "OK";
exit();
}
}
它重定向到404。 但是,如果我在下面的代码中使用它的工作原理,那么第一个代码有什么问题。
class LoginController
{
public function authUser()
{
return $this->render('test.html.php', array());
}
}
答案 0 :(得分:0)
您需要返回这样的Response对象:
class LoginController
{
public function authUser()
{
return new Response("OK");
}
}
https://api.symfony.com/3.4/Symfony/Component/HttpFoundation/Response.html