我正在编写一个服务器应用程序,并希望客户端使用正文中的数据来对我的GET方法进行pararmeterize,如下所示:
# http -v GET http://localhost:3000/url text=123 foo=bar
GET /url HTTP/1.1
Accept: application/json
Accept-Encoding: gzip, deflate, compress
Content-Length: 29
Content-Type: application/json; charset=utf-8
Host: localhost:3000
User-Agent: HTTPie/0.4.0
{
"foo": "bar",
"text": "123"
}
在AngularJS中我尝试过:
var params = {
"foo": "bar",
"text": "123"
}
// no body
$http({
method: 'GET',
url: '/url',
data: params })
// ugly url
// also has its limitation: http://stackoverflow.com/questions/978061/http-get-with-request-body
$http({
method: 'GET',
url: '/url',
params: params })
// params in body, but I wanted GET
$http({
method: 'POST',
url: '/url',
data: params })
这是设计还是错误?
我无法从documentation找到原因。
答案 0 :(得分:13)
我会以此作为答案:
对于HTTP,它不是禁止的,但您不应该使用它,因为服务器可能(并且应该)忽略GET
请求的正文。
对于XHR,GET
和HEAD
的主体将被忽略(由@ jacob-koshy暗示)。