我有个问题。Restler 3 中的工作路径如何?
class eventos {
function index($desde=0, $hasta=0) {}
function get($num, $p2='optional') {
if($p2 != 'attend'){}
else{}
}
function post($num, $p2, $request_data = null){
if($p2 == 'comment'){}
if($p2 == 'attend'){}
}
}
我需要:
GET ...public/index.php/eventos/(带有2个参数)好的!
POST ...public/index.php/eventos/(4-5个参数)它是如何工作的?
获取 ...public/index.php/eventos/{id} 好的!
获取 ...public/index.php/eventos/{id}/attend NO WORK!!! 如果 ...eventos/x?p2=attend 工作,但我不想要这个,我想要 ...eventos/x/attend
POST ...public/index.php/eventos/{id}/attend(X 参数)好的!
POST ...public/index.php/eventos/{id}/comment(带2个参数)好的!
谢谢!