一个简单的REST GET调用
http://localhost/root/student/11
可以通过
处理 $data->get('/student/:id', 'getStudent');
但我想要发送参数数据,因为它解决了
中的其他问题 http://localhost/root/student?id=11
如何在SLim框架中处理这些数据?
答案 0 :(得分:2)
超薄文档:Request Variables。
你的例子:
$app->get('/root/student', function() use ($app) {
$id = $app->request()->get("id");
//$id is '11' now
});