Laravel - 检查Ajax是否请求$request->wantsJson()
我一直在尝试找到一种方法来确定Laravel中的Ajax调用,但我没有找到任何关于它的文档。
我有一个控制器函数,我想根据请求的性质以不同的方式处理响应。基本上,这是绑定到 GET 请求的资源控制器方法。index()
public function index()
{
if(!$this->isLogin())
return Redirect::to('login');
if(isAjax()) // This is what I am needing.
{
return $JSON;
}
$data = array(
'records' => $this->table->fetchAll()
);
$this->setLayout(compact('data'));
}
我知道在PHP中确定Ajax请求的其他方法,但我想要一些特定于Laravel的东西。
谢谢
更新:
我尝试使用
if(Request::ajax())
{
echo 'Ajax';
}
但是我收到此错误:
Non-static method Illuminate\Http\Request::ajax() should not be called statically, assuming $this from incompatible context
该类表明这不是一个静态方法。