简体   繁体   中英

Swift 4 - Alamofire post request with httpbody

I have this Alamofire post request like so:

var jsonArrayOfDictionaries = [[AnyHashable: Any]]()

let user = appDelegate.username
let password = appDelegate.password

let url = webservice + "PostTasks"
let credential = URLCredential(user: user!, password: password!, persistence: .forSession)
let headers = ["Accept": "application/json;odata=verbose", "Content-type": "application/json;odata=verbose"]
let jsonData: Data? = try? JSONSerialization.data(withJSONObject: jsonArrayOfDictionaries, options: .prettyPrinted)

print(jsonData!)

//request.httpBody = jsonData

Alamofire.request(url, method: .post, headers: headers).authenticate(usingCredential: credential).responseJSON {
        (response) in
        switch response.result {
        case .success:
            if let value = response.result.value {

                print(value)

                OperationQueue.main.addOperation({

                    completion(true)

                })


            }else{

                print("There is error in the server response")

                completion(false)

            }

        case .failure (let error):

            print("The NTLM request error is: ", error.localizedDescription)

            completion(false)

        }

    }

My question is how do I add the jsonData variable to the httpbody of this request? I have looked into this issue and all the solutions appear to be old. Please help!

This is how jsonArrayOfDictionaries is getting populated:

var jsonArrayOfDictionaries = [[AnyHashable: Any]]()

        for i in 0..<cellHolder.count {

            var jsonDict = [AnyHashable: Any]()

            jsonDict["scheduleTaskID"] = cellHolder[i].scheduleTaskID

            jsonDict["task"] = cellHolder[i].task

            jsonDict["scheduledDate"] = cellHolder[i].scheduledDate

            jsonDict["actualDate"] = cellHolder[i].actualDate

            jsonDict["finishedDate"] = cellHolder[i].finishedDate

            jsonDict["selected"] = (cellHolder[i].selected) ? 1 : 0

            jsonDict["completedBy"] = appDelegate.username

            jsonDict["sortOrder"] = cellHolder[i].sortOrder

            jsonArrayOfDictionaries.append(jsonDict)

            jsonDict = [AnyHashable: Any]()

        }

Its in a loop and gets appended.

1. Change

let jsonData: Data? = try? JSONSerialization.data(withJSONObject: jsonArrayOfDictionaries, options: .prettyPrinted)

to

let jsonData = try JSONSerialization.jsonObject(with: jsonArrayOfDictionaries, options: []) as? [String: Any]

2. Add jsonData to your request

Alamofire.request(url, method: .post, headers: headers, parameters: jsonData).authenticate(usingCredential: credential).responseJSON {

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM