How to send POST request with both parameter and body for JSON data in Swift 3 using Alamofire 4?

后端 未结 2 1676
清酒与你
清酒与你 2020-12-13 16:55

Postman api url added below.

Present code :

let baseUrl = \"abc.com/search/\"
let param  =  [
        \"page\":\"1\",
        \"size\":\"5\",
               


        
2条回答
  •  感动是毒
    2020-12-13 17:20

    You are mixing two things here, page,size and sortBy is you need to pass with the url string as query string. Now your body is request is JSON Array and you can post array with Alamofire only using URLRequest. So try like this.

    let baseUrl = "abc.com/search/"
    let queryStringParam  =  [
        "page":"1",
        "size":"5",
        "sortBy":"profile_locality"
    ]
    //Make first url from this queryStringParam using URLComponents
    var urlComponent = URLComponents(string: baseUrl)!
    let queryItems = queryStringParam.map  { URLQueryItem(name: $0.key, value: $0.value) }
    urlComponent.queryItems = queryItems
    
    //Now make `URLRequest` and set body and headers with it
    let param = [
        [
            "fieldName" : "abc",
            "fieldValue":"xyz"
        ],
        [
            "fieldName" : "123",
            "fieldValue":"789"
        ]
    ]
    let headers = [ "Content-Type": "application/json" ]
    var request = URLRequest(url: urlComponent.url!)
    request.httpMethod = "POST"
    request.httpBody = try? JSONSerialization.data(withJSONObject: param)
    request.allHTTPHeaderFields = headers
    
    //Now use this URLRequest with Alamofire to make request
    Alamofire.request(request).responseJSON { response in
        //Your code
    }
    

提交回复
热议问题