我们可以在调用Alamofire的get方法时有身体吗?

时间:2019-02-27 13:10:59

标签: ios swift get alamofire http2

您知道HTTP 2在调用get方法中支持主体。我想知道我们是否可以使用Alamofire方法随身体发送get请求?如果可以,怎么办? 我已经尝试过此代码

 let body = ["key":"value"]

        Alamofire.request(url,
            method: .get,
            parameters: body,
            encoding: URLEncoding.httpBody,
            headers: headers)
            .responseJSON { (apiResponse) in


                  ...
            }

0 个答案:

没有答案