在Tonic中使用Method映射URL?

时间:2013-05-15 10:46:13

标签: php web-services tonic

我想用补品映射网址,我该怎么做?我有什么特别的文件吗?除了它的API文档,因为我已经阅读了它的API,没有任何关于它的文档?

例如这里是我的班级

    /**
 * Display and process a HTML form via a HTTP POST request
 *
 * This page outputs a simple HTML form and gathers the POSTed data
 *
 *
 *
 *
 * @uri /example/getExample/:name     
 * @uri /example/getExample/         
 * 
 * @uri /Example/:name
 * 
 */
 class example extend Resource{

    /**
     *  
     * Handle a GET request for this resource
     * @method GET
     * @param Request $name
     * @return str
     */
    function getExamplemethod1($name=null) {
        return json_encode(array('status'=>'done method 2'));
    }

    /**
     * 
     * Handle a POST request for this resource
     * @method GET
     * @param Request $name
     * @return str
     */
    function getExamplemethod2($name=null) {
        if($name == null){
            return json_encode(array('status'=>'done1'));
        }
        else{
            return json_encode(array('status'=>'done1', 'name'=>$name));
        }
    }



 }

我想调用URL中的方法,我该怎么做?

0 个答案:

没有答案