我正在尝试通过设置cookie来防止AJAX调用产生的响应-这显然与大多数人想要的相反,因此到目前为止,寻找答案的结果一直没有成功。
AJAX调用中的典型响应标头和正文:
HTTP/1.1 200 OK
Date: Thu, 11 Oct 2018 10:14:46 GMT
Server: Apache/2.4.18 (Ubuntu)
Set-Cookie: PHPSESSID=kcmg1k9e; path=/
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate
Pragma: no-cache
Content-Length: 2274
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
Content-Type: application/json; charset=UTF-8
{"foo":15,"bar":25}
我想使用JSON,但忽略cookie。我怎样才能做到这一点?有没有可以在XHR调用中发送的参数?