如何使用 Alamofire 等待 API 响应
How to wait API response with Alamofire
如何使用 Alamofire 在 SwiftUI 中等待我的 API 响应?我已经尝试了一些完成处理但没有工作。
private func loadData(completion : ()->()) {
let myURL = makeURL()
print("myURL=",myURL)
AF.request(myURL, method: .get).responseJSON { (response) in
if response.value != nil {
let userJSON: JSON = JSON(response.value!)
print("userJSON: ", userJSON)
newName = userJSON["name"].stringValue
image = userJSON["image"].stringValue.replacingOccurrences(of: "\/\/", with: "//")
print("image = ", image)
numShare = userJSON["numShares"].intValue.shorted()
engagementRate = userJSON["engagementRate"].intValue.shorted()
followers = userJSON["followers"].intValue.shorted()
numLikes = userJSON["numLikes"].intValue.shorted()
numViews = userJSON["numViews"].intValue.shorted()
numVideos = userJSON["numVideos"].intValue.shorted()
numComments = userJSON["numComments"].intValue.shorted()
following = userJSON["following"].intValue.shorted()
//update
} else {
print("err, \(String(describing: response.error))")
}
}
completion()
print("ok")
}
我是这样称呼它的
Button("Show Insights")
{
self.loadData(completion: {
showView = "NormalView"
})
}
我看到我们也可以使用 success/failure 个案例,但我不知道该怎么做
completion()
行必须在 闭包内
AF.request(myURL, method: .get).responseJSON { (response) in
...
completion()
}
并放弃 SwiftyJSON
以支持 Codable
。 Alamofire 可以直接用 Codable
解码 JSON。
如何使用 Alamofire 在 SwiftUI 中等待我的 API 响应?我已经尝试了一些完成处理但没有工作。
private func loadData(completion : ()->()) {
let myURL = makeURL()
print("myURL=",myURL)
AF.request(myURL, method: .get).responseJSON { (response) in
if response.value != nil {
let userJSON: JSON = JSON(response.value!)
print("userJSON: ", userJSON)
newName = userJSON["name"].stringValue
image = userJSON["image"].stringValue.replacingOccurrences(of: "\/\/", with: "//")
print("image = ", image)
numShare = userJSON["numShares"].intValue.shorted()
engagementRate = userJSON["engagementRate"].intValue.shorted()
followers = userJSON["followers"].intValue.shorted()
numLikes = userJSON["numLikes"].intValue.shorted()
numViews = userJSON["numViews"].intValue.shorted()
numVideos = userJSON["numVideos"].intValue.shorted()
numComments = userJSON["numComments"].intValue.shorted()
following = userJSON["following"].intValue.shorted()
//update
} else {
print("err, \(String(describing: response.error))")
}
}
completion()
print("ok")
}
我是这样称呼它的
Button("Show Insights")
{
self.loadData(completion: {
showView = "NormalView"
})
}
我看到我们也可以使用 success/failure 个案例,但我不知道该怎么做
completion()
行必须在 闭包内
AF.request(myURL, method: .get).responseJSON { (response) in
...
completion()
}
并放弃 SwiftyJSON
以支持 Codable
。 Alamofire 可以直接用 Codable
解码 JSON。