我有网络应用程序,我需要制作移动应用程序,
没有重复代码的最佳方法是返回移动设备的json并返回网页视图。
答案 0 :(得分:0)
在您的移动应用中,您需要将Accept
标题设置为application/json
然后在你的代码中
if( $request->wantsJson() ) // Laravel's method that is checking the Accept header for application/json
{
return ['foo' => 'bar'];
}
return view('foo.bar');