Zend Navigation,我如何将它与 url 中的参数一起使用?我在导航中使用参数进行了尝试,没有进行任何更改:(

发布于 2024-11-08 20:26:25 字数 2686 浏览 0 评论 0原文

我的 zend 导航有问题。 我使用 zend 导航,当我在 url 中调用类似的内容时就可以了:

www.website/article_new, www.website/article_list, 
www.website/friends_new, ...

但我想使用一些像这样的参数来调用该网站:

www.website/article_new/123452/2335/45633246, 
www.website/friends_new/23453/3453524/34554

我尝试设置一些参数,但这不起作用。

我将导航放在引导程序中,并在布局中使用它。它是一个带有一些面包屑的导航,其中 display:true 和 display:false。 这是我的引导程序中的代码:

$navigation = new Zend_Navigation(array(
                                    array(
                                        'label' => 'Home',
                                        'controller' => 'index',
                                        'action' => 'index',
                                        'class' => 'menuF'
                                    ),
                                    array(
                                        'label' => 'Article',
                                        'controller' => 'Article_List',
                                        'id' => 'article',
                                        'action' => 'index',
                                        'class' => 'menu',
                                        'pages' => array(
                                            array(
                                            'label' => 'Neu',
                                            'id' => 'article',
                                            'controller' => 'Article_New',
                                            'action' => 'index',
                                            'class' => 'submenu'
                                            )
                                        )
                                    ).....

以及layout.phtml 中的代码。在此代码中,我显示是否显示面包块。

foreach($container as $page) {
                    $par = $active;
                    if ($page != $active && $page->getClass()!='menu' && $page->getClass()!='menuF' && $page->getID()!=$par->getID()) {
                        $page->setClass('submenu');

                    } else {
                        $found = $container->findAllBy('ID', $active->getID());
                        foreach($found AS $p){
                            if($p->getClass()!='menu'&&$p->getClass()!='menuF'){
                                $p->setClass('sub');
                            }
                        }
                    }
                }
                echo $this->navigation()->menu()->renderMenu($this->nav);

希望任何人都可以帮助我! 感谢大家! 此致 汤姆

I have got a problem with the zend navigation.
I use the zend navigation, and its ok when i call something like this in the url:

www.website/article_new, www.website/article_list, 
www.website/friends_new, ...

But I want to call the site with some params like this:

www.website/article_new/123452/2335/45633246, 
www.website/friends_new/23453/3453524/34554

I try it about to set some params, but this doesnt function.

I put the navigation in the bootstrap and in the layout I use it. Its a Navigation with some breadcumps where display:true and display:false.
Here is a code from my bootstrap:

$navigation = new Zend_Navigation(array(
                                    array(
                                        'label' => 'Home',
                                        'controller' => 'index',
                                        'action' => 'index',
                                        'class' => 'menuF'
                                    ),
                                    array(
                                        'label' => 'Article',
                                        'controller' => 'Article_List',
                                        'id' => 'article',
                                        'action' => 'index',
                                        'class' => 'menu',
                                        'pages' => array(
                                            array(
                                            'label' => 'Neu',
                                            'id' => 'article',
                                            'controller' => 'Article_New',
                                            'action' => 'index',
                                            'class' => 'submenu'
                                            )
                                        )
                                    ).....

And the code from the layout.phtml. On this code I show if the breadcump is shown or not.

foreach($container as $page) {
                    $par = $active;
                    if ($page != $active && $page->getClass()!='menu' && $page->getClass()!='menuF' && $page->getID()!=$par->getID()) {
                        $page->setClass('submenu');

                    } else {
                        $found = $container->findAllBy('ID', $active->getID());
                        foreach($found AS $p){
                            if($p->getClass()!='menu'&&$p->getClass()!='menuF'){
                                $p->setClass('sub');
                            }
                        }
                    }
                }
                echo $this->navigation()->menu()->renderMenu($this->nav);

Hope anybody can help me!
Thanks for all!
Best regards
Tom

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

冷…雨湿花 2024-11-15 20:26:25

我发现自己错了!

我想这样称呼:
www.website/article/344435/23452345

这肯定会引发错误,因为没有任何像 344435

这样的 操作
www.website/article/show/var1/2435234/var2/2345234352
没关系。

剩下的就是路由的事情了!

非常抱歉!
伟大的汤姆

I found myself the mistake!

I want to call something like this:
www.website/article/344435/23452345

surely this throws a mistake, because there isnt any action like 344435

with something like this
www.website/article/show/var1/2435234/var2/2345234352
its ok.

the rest is something for routing!

Big sorry to all!
Greats Tom

送君千里 2024-11-15 20:26:25

尝试使用路由名称而不是模块、控制器和动作系统。

array(
 'label' => 'Article',
 'route' => 'Article_List',
 'id' => 'article',
 'class' => 'menu',
 ...
)

路由器将处理所有 URL 解析并返回正确的变量。

Try to use the route name instead of the module, controler and action system.

array(
 'label' => 'Article',
 'route' => 'Article_List',
 'id' => 'article',
 'class' => 'menu',
 ...
)

The router will handle all the URL parsing and return the correct variables.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文