类别树的路由

Routing for category tree(类别树的路由)
本文介绍了类别树的路由的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用 Tree 学说类别树的扩展,并希望有如下路线:

I am using the Tree doctrine extension for a category tree and would like to have routes like:

/cat/subcat1/subcat2/subcat3

我可以这样定义路线

/{cat}
/{cat}/{subcat}
/{cat}/{subcat}/{subcat2)
etc...

但是有没有更优雅和通用的方法来实现它?一个可以接受无限数量的关卡的系统?

But is there a more elegant and general way of implementing this? A system that can accept an unlimited number of levels?

推荐答案

你可以做的是在你的路由参数中接受斜线(仅适用于这个路由).它涉及您不能将任何其他参数排队,因为斜线分隔符将被视为类别参数的一部分...

What you can do is accepting slashes in your routing parameters (for this route only). It involves that you can't queue any other parameter as slash separator will be seen as being part of category parameter...

那么,如何管理路由参数中的斜线:

So, how to manage slashes in a routing parameter :

_hello:
    pattern: /category/{category}
    defaults: { _controller: AcmeDemoBundle:Demo:category }
    requirements:
        category: ".+"

调用 /category/cat1/sub1/sub2 将调用 DemoController::categoryAction($category) 方法,并将 'cat1/sub1/sub2' 作为 $category 参数.只需使用您自己的代码来解码!

Calling /category/cat1/sub1/sub2 will call DemoController::categoryAction($category) method with 'cat1/sub1/sub2' as $category parameter. Just use your own code to decode !

在官方文档中找到的代码示例:http://symfony.com/doc/2.0/cookbook/routing/slash_in_parameter.html

Code sample found on official doc : http://symfony.com/doc/2.0/cookbook/routing/slash_in_parameter.html

这篇关于类别树的路由的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Convert JSON integers and floats to strings(将JSON整数和浮点数转换为字符串)
in php how do I use preg replace to turn a url into a tinyurl(在php中,如何使用preg替换将URL转换为TinyURL)
all day appointment for ics calendar file wont work(ICS日历文件的全天约会不起作用)
trim function is giving unexpected values php(Trim函数提供了意外的值php)
Basic PDO connection to MySQL(到MySQL的基本PDO连接)
PHP number_format returns 1.00(Php number_Format返回1.00)