请帮助我,如何在php sh-service框架中创建自定义路由。
答案 0 :(得分:0)
试试这个:
$app->get('/name/:firstname',function($app,$req,$res){
$res->json($req->firstname);
}
它对我有用。
答案 1 :(得分:0)
非常感谢你为我工作。
请尝试以下格式:
$app->get('/name/:firstname',function($app,$req,$res){
echo $req->firstname;
}
请勿尝试以下格式:
$app->get('/name/{firstname}',function($app,$req,$res){
$res->json($req->firstname);
}