Routing in Zend Framework 2

前端 未结 2 1753
清酒与你
清酒与你 2021-01-18 04:45

I\'m trying to do some routing in Zend Framework 2, but it\'s not working.

The basics of the skeleton application are working, so I added a new module called User an

相关标签:
2条回答
  • 2021-01-18 05:02

    You have to understand how routing works in Zend Framework 2. Routes have a name and some configuration. The structure looks as follows:

    'router' => array(
      'routes' => array(
        'route_name_1' => array( /* config here */ ),
        'route_name_2' => array( /* config here */ ),
        'route_name_3' => array( /* config here */ ),
      ),
    ),
    

    Here the route names are route_name_1 etc. If you assemble an url, you use that route name. So if route_name_1 has the url /foo/bar/baz, you can ask for the url of route_name_1 by using the url view helper:

    echo $this->url('route_name_1'); // prints /foo/bar/baz
    

    Your url /user/create is mapped to the route name user_create so to assemble this url, you need to pass on the route name:

    echo $this->url('user_create'); // prints /user/create
    

    CHILD ROUTES

    There is also a concept of child routes. This can give you a route user which maps to /user and then this user route has a child create which maps to /create and as such the "total" route of create is /user/create. This can be configured as follows:

    'router' => array(
      'routes' => array(
        'route_name_1' => array( /* config here */ ),
        'route_name_2' => array(
          /* config here */
    
          'child_routes' => array(
            'child_name_1' => array( /* config here */ ),
            'child_name_2' => array( /* config here */ ),
          ),
        ),
      ),
    ),
    

    Now, if you want to assemble an url for route_name_2 it just looks as above:

    echo $this->url('route_name_1');
    

    But if you need to assemble the url for child_name_1 you construct a "path" with a / between the name and its parent(s):

    echo $this->url('route_name_1/child_name_1');
    

    So although you can access the /user/create route fine with the route name you already have, you might want to use child routes as this gives you a more flexible routing system:

    'router' => array(
      'routes' => array(
        'user' => array(
          'type'    => 'Literal',
          'options' => array(
            'route'    => '/user/create',
              'defaults' => array(
                'controller' => 'User\Controller\User',
                'action'     => 'profile',
              ),
            ),
          ),
    
          'child_routes' => array(
            'login'  => array(
              'type' => 'Literal',
              'options' => array(
                'route'    => '/login',
                'defaults' => array(
                  'action'     => 'login',
                ),
              ),
            ),
            'create' => array(
              'type' => 'Literal',
              'options' => array(
                'route'    => '/create',
                'defaults' => array(
                  'action'     => 'create',
                ),
              ),
            ),
          ),
        ),
      ),
    ),
    

    Then you have a route user which maps to a "profile". If you assemble user/create you go to /user/create and it uses the "createAction" from the user controller. The same hapens with user/login route.

    0 讨论(0)
  • 2021-01-18 05:09

    I have found what I was doing wrong.

    In one of my view files, there was a URL function pointing to the route /create. It would be much helpful if Zend indicated the file with the invalid route, but, once I found the mistake, everything is working now.

    'router' => array(
        'routes' => array(
    
            'login' => array(
                'type'    => 'Literal',
                'options' => array(
                    'route'    => '/login',
                    'defaults' => array(
                        'controller' => 'User\Controller\User',
                        'action'     => 'login',
                    ),
                ),
            ),
    
            'logout' => array(
                'type'    => 'Literal',
                'options' => array(
                    'route'    => '/logout',
                    'defaults' => array(
                        'controller' => 'User\Controller\User',
                        'action'     => 'logout',
                    ),
                ),
            ),
    
            'user' => array(
                'type'    => 'Literal',
                'options' => array(
                    'route'    => '/user',
                    'defaults' => array(
                        'controller' => 'User\Controller\User',
                        'action'     => 'profile',
                    ),
                ),
                'child_routes' => array(
                    'create' => array(
                        'type' => 'Literal',
                        'options' => array(
                            'route'    => '/create',
                            'defaults' => array(
                                'controller' => 'User\Controller\User',
                                'action'     => 'create',
                            ),
                        ),
                    ),
                    'edit' => array(
                        'type' => 'Literal',
                        'options' => array(
                            'route'    => '/edit',
                            'defaults' => array(
                                'controller' => 'User\Controller\User',
                                'action'     => 'edit',
                            ),
                        ),
                    ),
                ),
            ),      
    
        ),
    ),
    

    Thank you for the help!

    0 讨论(0)
提交回复
热议问题