我有以下JSON,必须包含在POST请求的主体中,
{
"type" : "myData",
"condition" : {"projectid": 40}
}
如何使用Alamofire形成我的POST请求?
答案 0 :(得分:2)
您只需创建参数Dictionary
。
let parameters: [String:Any] = [ "type" : "myData", "condition" : ["projectid" : 40]]
现在使用parameters
传递此Alamofire
字典。
Alamofire.request(urlString, method: .post, parameters: parameters, encoding: JSONEncoding.default).responseJSON { response in
print(response)
}