我是新的使用纤细的框架,我试图得到一个。它不返回任何内容,它返回代码200。
$app->get('/noticias',function ()use ($db,$app){
try{
$consulta = $db->prepare("select * from noticias");
$consulta->execute();
$resultados = $consulta->fetchAll(PDO::FETCH_ASSOC);
echo json_encode($resultados);
}catch (Exception $ex){
echo 'We cant show the news';
}
});
When I make a get this is the result
你知道一些苗条框架的教程吗?
由于
答案 0 :(得分:0)
我不清楚你是否使用Slim版本2或3.你应该使用版本3.
documentation包含您应该完成的First Application Walkthrough教程。