Luracast Restler - 在一个路由规则中路由一个对象/对象列表

时间:2014-04-17 08:48:55

标签: php url-routing restler

我不知道如何配置路由类以在一个索引方法中路由它:

类别/ 176
类别/深度= 3&安培;类别= 4

第一个URL用于一个类别,第二个URL用于类别列表(按深度和类别参数过滤)。

我用这种方法有类别:

/**
* @smart-auto-routing false
*/
public function index($category_id) {
}

好的,这适用于类别/ 176但是如何将类别/?depth = 3& category = 4路由添加到此索引方法?

1 个答案:

答案 0 :(得分:1)

Class Categories
{

    public function index($depth=3, $category=4) {
        //categories?depth=3&category=4 received here
        //since they have default values we can call
        //categories with out any query param too!
    }

    public function get($id){
        //categories/176 received here
    }
}