URL中的Zf2区域设置和$ this->网址

时间:2013-01-22 16:00:10

标签: locale zend-framework2 zend-locale

我正在ZF2 Skeleton App基础上开发一个Web应用程序。我玩了很多选择,但未能取得最后的进展。

我需要将网址路由到:

http://myapp/
http://myapp/en/album

到AlbumController / indexAction。此外,链接需要工作:

http://myapp/en/album/edit/1
http://myapp/en/album/delete/1

代码会生成正确的网址,但点击后会返回“404”错误

我的应用程序/ module.config.php如下:


return array (
        'router' => array (
                'routes' => array (
                        'home' => array (
                                'type' => 'Zend\Mvc\Router\Http\Literal',
                                'options' => array (
                                        'route' => '/',
                                        'defaults' => array (
                                                'controller' => 'Album\Controller\Album',
                                                'action' => 'index',
                                                'lang'     => 'en',
                                        ) 
                                ) 
                        ),
                        'application' => array (
                                'type' => 'Literal',
                                'options' => array (
                                        'route' => '/application',
                                        'defaults' => array (
                                                '__NAMESPACE__' => 'Application\Controller',
                                                'controller' => 'Index',
                                                'action' => 'index' 
                                        ) 
                                ),
                                'may_terminate' => true,
                                'child_routes' => array (
                                        'default' => array (
                                                'type' => 'Segment',
                                                'options' => array (
                                                        'route' => '[:lang[/album[/:action[/:id]]]]',
                                                        'constraints' => array (
                                                                'lang'     => '[a-z]{2}',
                                                                'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
                                                                'id' => '[0-9]+'
                                                        ),
                                                        'defaults' => array (
                                                                'controller' => 'Album\Controller\Album',
                                                                'action' => 'index',
                                                                'lang'     => 'en',
                                                        )
                                                ) 
                                        ) 
                                ) 
                        ) 
                ) 
        ),
        'service_manager' => array (
                'factories' => array (
                        'translator' => 'Zend\I18n\Translator\TranslatorServiceFactory' 
                ) 
        ),
        'translator' => array (
                'locale' => 'en_US',
                'translation_file_patterns' => array (
                        array (
                                'type' => 'gettext',
                                'base_dir' => __DIR__ . '/../language',
                                'pattern' => '%s.mo' 
                        ) 
                ) 
        ),
        'controllers' => array (
                'invokables' => array (
                        'Application\Controller\Index' => 'Application\Controller\IndexController' 
                ) 
        ),
        'view_manager' => array (
                'display_not_found_reason' => true,
                'display_exceptions' => true,
                'doctype' => 'HTML5',
                'not_found_template' => 'error/404',
                'exception_template' => 'error/index',
                'template_map' => array (
                        'layout/layout' => __DIR__ . '/../view/layout/layout.phtml',
                        'application/index/index' => __DIR__ . '/../view/application/index/index.phtml',
                        'error/404' => __DIR__ . '/../view/error/404.phtml',
                        'error/index' => __DIR__ . '/../view/error/index.phtml' 
                ),
                'template_path_stack' => array (
                        __DIR__ . '/../view' 
                ) 
        ) 
);

我的相册/ module.config.php包含以下路由器:


'router' => array (
                'routes' => array (
                        'album' => array (
                                'type' => 'segment',
                                'options' => array (
                                        'route' => '[:lang[/album[/:action[/:id]]]]',
                                        'constraints' => array (
                                                'lang'     => '[a-z]{2}',
                                                'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
                                                'id' => '[0-9]+'
                                        ),
                                        'defaults' => array (
                                                'controller' => 'Album\Controller\Album',
                                                'action' => 'index', 
                                                'lang'     => 'en',
                                        )
                                ),
                        )
                )
        ), 

/////////////////////////////////////////////// ///////////////////////////////////////// //现在这很好用。

另外,当我打电话给$ this-> url('album',array('action'=>'edit','id'=> $ album-> id));在视图文件(.phtml)中,它没有按预期返回正确的URL:

http://www.myapp.com/en/edit/id/1

/////////////////////////////////////////////// ///////////////////////////////////////// //更正的代码适用于URL $ this-> url('album',array('action'=>'edit','id'=> $ album-> id)) ////////////////////////////////////////////////// /////////////////////////////////////

提前感谢您的帮助。

1 个答案:

答案 0 :(得分:1)

Album / module.config.php中缺少'/'的问题:

'route' => '[:lang[/album[/:action[/:id]]]

应该是:

'route' => '/[:lang[/album[/:action[/:id]]]

再次感谢所有人的帮助。