我在为我的博客模块创建自定义路由时遇到了一些麻烦(我正在这样做以更好地学习 Magento)。
到目前为止我所做的:创建了一个自定义表,其中还包含所需的 slug。在我的 config.xml 中添加了以下内容
<default>
<web> <!-- what does this represent??? -->
<routers>
<namespace_blog_list>
<area>frontend</area>
<class>Namespace_Blog_Controller_Router</class>
</namespace_blog_list>
</routers>
</web>
</default>
所以,我创建了Namespace_Blog_Controller_Router
类,并从 CMS 控制器复制了match()
方法,但不太确定如何修改它。
这是我到目前为止所拥有的:
// $identifier is 'blog/view/my-slug-name';
$parts = explode('/', $identifier);
if ($parts[0] == 'blog') {
$post = Mage::getModel('namespace_blog/post');
$routeInformation = $post->checkIdentifier($identifier);
$request->setModuleName('namespace_blog')
->setControllerName($routeInformation['controller'])
->setActionName($routeInformation['action']);
if (isset($routeInformation['params']) && count($routeInformation['params'])) {
foreach ($routeInformation['params'] as $key => $param) {
$request->setParam($key, $param);
}
}
$request->setAlias(
Mage_Core_Model_Url_Rewrite::REWRITE_REQUEST_PATH_ALIAS,
$identifier
);
return true;
}
PS:$post->checkIdentifier 返回以下数组:
array(
'controller' => 'index',
'action' => 'index',
'params' => array(
'id' => 3
)
)
问题是它进入了一个无限循环,我发现了以下报告:
a:5:{i:0;s:52:"Front controller reached 100 router match iterations";i:1;s:337:"#0 /var/www/app/code/core/Mage/Core/Controller/Varien/Front.php(183): Mage::throwException('Front controlle...')
#1 /var/www/app/code/core/Mage/Core/Model/App.php(354): Mage_Core_Controller_Varien_Front->dispatch()
#2 /var/www/app/Mage.php(683): Mage_Core_Model_App->run(Array)
#3 /var/www/index.php(87): Mage::run('', 'store')
#4 {main}";s:3:"url";s:21:"/index.php/blog/index";s:11:"script_name";s:10:"/index.php";s:4:"skin";s:7:"default";}`
有任何想法吗?这是最好的方法,还是有其他推荐的解决方案?
谢谢,