Ben böyle bir POST vücut menü noktası:Heterojen koleksiyon edebi sadece '[String: Any]' ile ilgili olabilir; Bu kasıtlı ise açık tip ek açıklama eklemek
: Yani{
"id": 0,
"name": "string",
"contactInfo": "string",
"message": "string"
}
i parametrelerini yazabilmek için ben böyle sonrası vücut sözlüğünü açıklayan am Alamofire kullanıyorum beri
let body = ["id": userID, "name": userName, "contactInfo": contactInfo, "message": message]
class func postUserFeedback(userID: Int, userName: String, contactInfo: String, message: String,completionHandler: @escaping (FeedbackResponse?) -> Void) {
let body = ["id": userID, "name": userName, "contactInfo": contactInfo, "message": message]
request(route: .userFeedback, body: body).responseObject { (response: DataResponse<FeedbackResponse>) in
response.result.ifSuccess({
completionHandler(response.result.value)
})
response.result.ifFailure {
completionHandler(nil)
}
}
}
ben bu sözdiziminde yanlış yapıyorum?