我正在构建
AJAX请求的调试工具,我想显示请求/响应标头(就像Firebug一样).我可以使用
jqXHR.getAllResponseHeaders获取响应标头,但是请求头是否等同?
如果没有,我知道我可以自己重建一下:
GET /blah // this part is easy Host: servername.com // pretty easy Accept: ??? Referer: ??? // just use current page url? User-Agent: // easy from navigator.userAgent X-Requested-With: XMLHttpRequest // hardcoded,$.ajax always does this? Accept-Charset: ??? Accept-Encoding: ??? Accept-Language: ??? Connection: ???
我主要关心接受.看来浏览器或者是改变这个,因为我设置$.ajax({dataType:’json’}),而在firebug我看到接受application / json,text / javascript,* / *; Q = 0.01.我想要捕获发送的实际头文件.
对于引用者来说,使用window.url是安全的,还是别的东西?
我不知道如何获取Accept- *或Connection值.