我有一个AJAX请求,我希望根据if条件传递数据。
data: testobj
是一个返回{"name":"tom"}
$.ajax({
type: "POST",
url: 'test.asp',
data: testobj,
success: function(response){
alert(response);
}
});
数据有时可能未定义或为空。所以我希望有这样的东西
if (testobj != undefined){
data: testobj
}
是否可以在不重复整个块的情况下使用此条件?
答案 0 :(得分:-1)
只需单独存储您的配置。
public function handle($request, Closure $next, $guard = null)
{
if (Auth::guard($guard)->check()) {
return redirect('/home');
}
return $next($request);
}