$request->isAjax() 的实现
原生的ajax请求,需要加 xhr.setRequestHeader('X-Requested-With','XMLHttpRequest');
window系统
以下是 $request->isAjax() 实现
$request->isAjax()
public function isAjax(): bool { return $this->header('X-Requested-With') === 'XMLHttpRequest'; }
以下是ajax请求头
ajax请求浏览器会自动发送 X-Requested-With 头,用来标记是否是ajax请求。并没有看到你说的requestType头。
X-Requested-With
requestType
知道了,谢谢
以下是
$request->isAjax()
实现以下是ajax请求头
ajax请求浏览器会自动发送
X-Requested-With
头,用来标记是否是ajax请求。并没有看到你说的requestType
头。知道了,谢谢