PUTメソッド用のAlamofire Content-Typeアプリケーション/ jsonにcontent-type: application/json
を追加するソリューションが見つかりました。私は以下のように開発しましたが、正しく動作しません。PUTメソッド用Alamofire Content-Typeアプリケーション/ json
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()
}
エラーログを表示/追加します。 – Rugmangathan