私は問題があります。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 つのパラメーターを指定) OK!
POST ...public/index.php/eventos/ (4-5 パラメータ)どのように機能しますか?
GET ...public/index.php/eventos/{id} OK!
GET ...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 つのパラメーターを指定) OK!
ありがとう!