我将使用Lumen开发RestFul API,但遇到了一些问题。 当我尝试通过电子邮件获取用户时。我收到消息
“在此服务器上找不到请求的资源/user/test@example.com。”
这是我的路线
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
SystemChrome.setPreferredOrientations([
DeviceOrientation.portraitUp,
DeviceOrientation.portraitDown,
]);
return new MaterialApp();
}
}
我在laravel中尝试了相同的url,但是可以。不知道为什么 任何人都可以建议或帮助我。
答案 0 :(得分:0)
在流明中,路线如下
$app->get('/user/{email}', 'ThorController@show');
有关更多信息:https://lumen.laravel.com/docs/5.4/routing#route-parameters
还要检查您的数据库凭据,是否对api和laravel应用程序使用不同的数据库