注释不适用于Symfony 4.2项目

时间:2019-03-16 05:19:37

标签: php annotations symfony-4.2

我刚刚开始学习symfony 4.2以及以下symfony官方文档站点。我的控制器看起来像

<?php

// src/Controller/LuckyController.php
namespace App\Controller;

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

class LuckyController
{
    /**
     * @Route("/lucky/number/{max}")
      */
    public function number($max)
    {
        $number = random_int(0, $max);

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

?>

,我的网址是http://localhost:8012/symfony/public/lucky/number/10。注释在这里不起作用,因为当我在浏览器中调用它时,我收到404错误。

0 个答案:

没有答案