0
我需要使用swift2.0中的nsurl會話將json請求參數發送到服務器。我不知道如何創建json請求params.i創建了像這樣的參數如何使用swift 2.0發佈json請求參數
let jsonObj = [「Username」:「Admin」,「Password」:「123」,「DeviceId」:「87878」 ]
// print("Params are \(jsonObj)")
//request.HTTPBody = try! NSJSONSerialization.dataWithJSONObject(jsonObj, options: [])
// or if you think the conversion might actually fail (which is unlikely if you built `params` yourself)
do {
request.HTTPBody = try NSJSONSerialization.dataWithJSONObject(jsonObj, options:.PrettyPrinted)
} catch {
print(error)
}
,但它不是平的方法體,所以我得到的失敗響應
謝謝:)其有用的 –