gpt4 book ai didi

http - $http.get() 与 JSON 数据

转载 作者:可可西里 更新时间:2023-11-01 15:10:07 25 4
gpt4 key购买 nike

我正在编写一个服务器应用程序,并希望客户端使用正文中的数据来参数化我的 GET 方法,如下所示:

# 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 中看出原因.

最佳答案

我会把这个作为答案:

对于 HTTP,它不被禁止,但您不应该使用它,因为服务器可能(并且应该)忽略 GET 请求的主体。

引用:HTTP GET with request body

对于 XHR,GETHEAD 的主体将被忽略(@jacob-koshy 提示)。

引用:https://xhr.spec.whatwg.org/#the-send()-method

关于http - $http.get() 与 JSON 数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16210347/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com