我有以下过滤器:
Route::filter('security', function()
{
//do security checks
//send to my gateway controller and test() method
});
Route::when('/gateway', 'security');
以上似乎不起作用,我哪里出错了?
我应该在过滤器中放入什么来在网关控制器中加载我的测试方法?
如何使用以下方法测试调用是否为 ajax 调用:
请求::ajax()