Alamofire.request(webpath).responseJSON
{ response in
//here check success key ???
}
我的JSON響應「成功」的鍵值包含如何檢查在SWIFT 3.0
{Message = "some message";
Success = True;}
如何從響應直接把成功的關鍵,如果條件檢查?這是真的還是假的
Alamofire.request(webpath).responseJSON
{ response in
//here check success key ???
}
我的JSON響應「成功」的鍵值包含如何檢查在SWIFT 3.0
{Message = "some message";
Success = True;}
如何從響應直接把成功的關鍵,如果條件檢查?這是真的還是假的
Result
對象。它是一個枚舉,可以是success
或failure
。success
值返回的Any
對象作爲字典進行投射。像以下:
Alamofire.request(webpath).responseJSON { response in
guard case .success(let rawJSON) = response.result else {
// handle failure
return
}
// rawJSON is your JSON response in an `Any` object.
// make a dictionary out of it:
guard let json = rawJSON as? [String: Any] else {
return
}
// now you can access the value for "Success":
guard let successValue = json["Success"] as? String else {
// `Success` is not a String
return
}
if successValue == "True" {
// do something
} else {
// do something else
}
}
你的解決方案是正確的,但在此之後,我必須檢查,如果json [「Success」] = =「真」,如何檢查? – Dharini
@Dharini我更新了答案,如果「成功」的值是一個字符串。 –
您可以檢查如下:
let statusCheck = dicObj["Success"] as! Int
if statusCheck == 1{
println("Success")
}
else{
println("Failure")
}
即時將response.result.value存儲在dicobj中作爲字符串在這種情況下讓statusCheck = dicObj [「Success」] as!詮釋沒有工作 – Dharini
不保存像這樣...給我一分鐘我會寫代碼並與你分享... –
讓swiftyJsonVar = response.result.value! 如果讓dicObj = swiftyJsonVar爲? NSDictionary { } –
您可以檢索這個樣子。
if let result = response.result.value {
let JSON = result as! [String:Any]
if JSON["success"] == 1
{
print("success")
}
}
我相信你可以做,如果(響應[ 「成功」]){}; ? –