作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Alamofire.request(webpath).responseJSON
{ response in
//here check success key ???
}
我的 json 响应包含
{Message = "some message";
Success = True;}
如何直接从响应中获取成功键并检查 if 条件?是真还是假
最佳答案
Result
对象。它是一个枚举,可以是成功
或失败
。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
}
}
关于ios - 如何在 swift 3.0 中检查 "Success"键值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40859660/
我是一名优秀的程序员,十分优秀!