Ich finde jetzt Lösung für hinzufügen content-type: application/json
in Alamofire Content-Type-Anwendung/Json für PUT-Methode. Ich habe mich wie folgt entwickelt, funktioniert aber nicht richtig.Alamofire Content-Type-Anwendung/Json für PUT-Methode
Alamofire.request(.PUT, Config.preferenceURL, parameters: param, headers: headers)
.validate(contentType: ["application/json"])
.responseJSON { response in
let swiftyJsonVar = JSON(response.result.value!)
print(swiftyJsonVar)
if (swiftyJsonVar["success"]) {
}
JHProgressHUD.sharedHUD.hide()
}
Zeige/füge das Fehlerprotokoll hinzu, was du bekommst. – Rugmangathan