无法获得Route Symfony

时间:2017-03-30 12:55:56

标签: php symfony debugging config router

正如标题所说的那样,我无法获得我最近添加的一些特定路线。 我的symfony版本: 2.8.18 。 所以这里有详细信息:

路线我尝试匹配:   - / platform / cat   - / platform / cat / {id}

文件 - app / config / routing.yml

gb_platform:
resource: "@GBPlatformBundle/Resources/config/routing.yml"
prefix:   /platform

文件 - GB \ PlatformBundle \ Resources \ config \ routing.yml

    gb_platform_home_:
    path :   /
      defaults: { _controller: GBPlatformBundle:Advert:index }

gb_platform_home:
    path :   /{page}
    defaults: 
        _controller : GBPlatformBundle:Advert:index
        page: 1
    requirements:
        page: \d*

gb_platform_view:
    path :   /advert/{id}
    defaults: { _controller : GBPlatformBundle:Advert:view }
    requirements:
        id: \d+

gb_platform_add:
    path :   /add
    defaults: { _controller : GBPlatformBundle:Advert:add }

gb_platform_edit:
    path :   /edit/{id}
    defaults: { _controller : GBPlatformBundle:Advert:edit }
    requirements:
        id: \d+

gb_platform_delete:
    path :   /delete/{id}
    defaults: { _controller : GBPlatformBundle:Advert:delete }
    requirements:
        id: \d+

gb_platform_cat:
    path :   /cat
    defaults: { _controller : GBPlatformBundle:Category:index }

gb_platform_cat_view:
    path : /cat/{id}
    defaults: { _controller : GBPlatformBundle:Category:view }
    requirements:
        id: \d+

文件 - GB \ PlatformBundle \ Resources \ controller \ CategoryController.php

    <?php

namespace GB\PlatformBundle\Controller;

use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\RedirectResponse;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
use Symfony\Component\HttpFoundation\Response;

use GB\PlatformBundle\Entity\Advert;
use GB\PlatformBundle\Entity\Category;

class CategoryController extends Controller
{
    public function indexAction(Request $request)
    {

    }

    public function viewAction($id)
    {
        $em = $this->getDoctrine()->getManager();
        $catRepo = $em
            ->getRepository('GBPlatformBundle:Category');
        $cat = $catRepo
            ->find($id);

        if($cat === null)
        {
            throw new NotFoundHttpException("L'annonce d'id ".$id." n'existe pas.");
        }

        return $this->render('GBPlatformBundle:Category:view.html.twig', array(
            'category' => $cat,
            ));
    }
}

在原点,bundle的routing.yml无效。一旦修复,我尝试获得两个命令:

  

php app / console debug:router

     

php app / console debug:router gb_platform_cat

     

php app / console debug:router gb_platform_add

Debug Router

每个命令都是成功的,我看到/ cat和/ add在一个匹配和另一个匹配时没有区别。 我还尝试了多次清除缓存:

  

php app / console cache:clear --env prod

仍然无法正常工作。我糊涂了 ... 错误是基本的:找不到“GET / platform / cat / 7

的路由

3 个答案:

答案 0 :(得分:0)

您已定义/ cat / 7 not / platform / cat / 7

无论如何在控制器中使用注释而不是路由文件更好:

/**
 * @Route("/platform/cat/{id}", name="gb_platform_cat_view")
 */
public function viewAction($id)
{

    $em = $this->getDoctrine()->getManager();
    $catRepo = $em
        ->getRepository('GBPlatformBundle:Category');
    $cat = $catRepo
        ->find($id);

    if($cat === null)
    {
        throw new NotFoundHttpException("L'annonce d'id ".$id." n'existe pas.");
    }

    return $this->render('GBPlatformBundle:Category:view.html.twig', array(
        'category' => $cat,
        ));
}

答案 1 :(得分:0)

根据docs,您需要围绕需求模式引用。

gb_platform_cat_view:
    path : /cat/{id}
    defaults: { _controller : GBPlatformBundle:Category:view }
    requirements:
        id: '\d+'

答案 2 :(得分:0)

我终于得到了解决方案。

首先要确保routing.yml文件的有效性。 除了通常的symfony命令(它会告诉你一个错误),你可以使用如下的验证器:yamllint.com

在我的情况下,路由配置是正确的。我知道symfony可以通过debug:router命令找到它们,并将它们与其他功能路由进行比较。

我注意到,即使更改了可以匹配的路由的控制器,系统也不会考虑更新。显然,这是一个缓存问题。

在我真正开始使用时,拒绝这个假设,命令:

  

php app / console cache:clear --env prod

但问题是生产环境更加全球化,所以我在没有指定env的情况下解决了我的问题:

  

php app / console cache:clear

你做过一次的错误,但不是两次,所以......;)