如果在AJAX请求中有条件

时间:2017-05-22 22:18:53

标签: javascript jquery ajax

我有一个AJAX请求,我希望根据if条件传递数据。

data: testobj是一个返回{"name":"tom"}

的JSON对象
$.ajax({
    type: "POST",
    url: 'test.asp',
    data: testobj,
    success: function(response){
         alert(response);
    }
});

数据有时可能未定义或为空。所以我希望有这样的东西

if (testobj != undefined){
    data: testobj
}

是否可以在不重复整个块的情况下使用此条件?

1 个答案:

答案 0 :(得分:-1)

只需单独存储您的配置。

public function handle($request, Closure $next, $guard = null)
{
    if (Auth::guard($guard)->check()) {
        return redirect('/home');
    }

    return $next($request);
}