因此,這裏是我試圖使用Almofire將標題和正文(作爲字符串)發佈到API。Alamofire在iOS中添加字體作爲字符串APP
_ = Alamofire.request("http://myurl", method: .post, parameters: param, encoding: JSONEncoding.default, headers: ["Authorization" : token])
.responseJSON { response in
switch response.result {
case .success(let data):
let json = JSON(data)
print(json)
case .failure(let error):
_ = SweetAlert().showAlert("Data Error!", subTitle: "Something Is Wrong!! Please contact Support", style: AlertStyle.warning)
}}
這工作得很好..
但我無法弄清楚如何通過身體的字符串(這是我通過獲取數據的ID)API不接受任何parametrs(如鍵值或JSON ),除非它只是一個字符串(ID)。任何幫助將不勝感激。
我認爲你正在尋找[這](https://stackoverflow.com/questions/27855319 /請求後與-A-簡單串式體與 - alamofire)。 – Edu
嗨@Edu,我仍然無法找到答案與身體作爲字符串對象insted一個JSON的鍵值.. – Tendy
嗨@ Edu,非常感謝,我找到了你的幫助的答案。 – Tendy