URL を 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 でメソッドを呼び出したいのですが、どうすればよいですか?