gpt4 book ai didi

Symfony 4注释路由不起作用

转载 作者:行者123 更新时间:2023-12-02 21:07:07 25 4
gpt4 key购买 nike

我刚刚开始学习 Symfony。我正在关注this official tutorial确切地。使用 config/routes.yaml 完成时,路由工作正常,但使用 annotations 时,路由工作正常。 :

namespace App\Controller;

use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Annotation\Route;

class LuckyController
{

/**
* @Route("/lucky/number")
*/
public function number(){

$number = mt_rand(0, 100);

return new Response(
'<html><body><h1>MyLucky Number: ' . $number . '</h1></body></html>'
);
}
}

我收到此错误:

    Exception thrown when handling an exception
(Symfony\Component\Config\Exception\FileLoaderLoadException: [Semantical Error]
The annotation "@Symfony\Component\Annotation\Route" in method
App\Controller\LuckyController::number() does not exist, or could not be auto-loaded
in C:\wamp\vhosts\mysymfony4\config/routes\../../src/Controller/ (which is
being imported from "C:\wamp\vhosts\mysymfony4\config/routes/annotations.yaml"). Make sure
annotations are installed and enabled.)

最佳答案

我发现了我的错误。我使用了错误的命名空间进行路由。

使用 Symfony\Component\Annotation\Route;

应该是:

使用 Symfony\Component\Routing\Annotation\Route;

关于Symfony 4注释路由不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50747664/

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