我目前正在使用JavaScript中的REST apis,我想知道是否有一种方法可以显示/打印实际request
或更准确地显示request header
所谓的{{1}由HTTP-Post request
发送的。
我不是在谈论XMLHttpRequest()
。我在谈论response
。例如:
HTTP-Post
从例如发送这段代码:
POST /path/etc/etc HTTP/1.1
Accept: application/json
Content-Type: application/json
custom-header-1: foo
custom-header-2: bla
User-Agent: 1234
Content-Length: 2
Host: example.api.com
Connection: Keep-Alive
有没有办法自动确定是否确实发送了正确的值?