我需要知道如何重复调用api,直到获得特定状态,如10。
在我的情况下,当我得到另一个结果时,只需在toast中调用错误消息。 但是我的团队想在Appstore中反复调用它来购买。
下面是我的代码示例。
func deliveryProduct(json:JSON, receiptData:String) {
if let _userInfo = Authentication.userInfo {
if let account = _userInfo.account {
let dict:[String: Any] = ["myData":data]
getVerifyBillingiOS(dict: dict, completion: {
value in
let json = JSON(value)
let myStatus = json["status"].intValue
if myStatus == 10 {
print("Result Success")
}else{
print("Result Failed")
}
})
}
}
}
func postReceiptData(dict: [String: Any], completion: ((Any)->())?) {
let url = "myServerUrl"
Alamofire.requestURL(string: url, method: .post, parameter: dict, encoding: JSONEncoding.default, headers: applicationHeader(), completion: {
success, response in
switch response.result {
case .success(let value):
let json = JSON(value)
let status = json["status"].intValue
print(json["status"])
print("~~~~~~")
// Success status = 10, failure status = -10
if let _completion = completion {
_completion(value)
}
case .failure(let error):
if error._code == NSURLErrorTimedOut {
Util.showDefaultToast(message: "Network Error")
}
if let _completion = completion {
_completion(error.localizedDescription)
}
}
})
}
答案 0 :(得分:1)
而不是
print("Result Failed")
只是回想一下这个功能,我不能通过代码来实现,因为你提到的两个功能彼此无关,所以我无法想象该做什么,但是回想一下调用api的函数而不是打印错误(或两者兼而有之)这将使它继续努力直到它起作用
更新:
在let json = JSON(value)
之后
你应该致电
self.deliveryProduct(json: json, receiptData: receiptData)
及以下print("Result Failed")
你应该再次致电postReceiptData
我希望现在很清楚
答案 1 :(得分:0)
答案 2 :(得分:0)
一种简单的方法。使用回调获取状态代码,检查是否需要,否则再次调用函数发出请求。继续这个过程,直到你得到所需的代码。
示例代码:
func getData()
{
requestForDataWithURL(url: "http://localhost:8000/getData") { (code) in
if code == 200
{
print("success")
}
else
{
self.getData()
}
}
}
func requestForDataWithURL(url:String, completionHandler: @escaping (_ statusCode: Int)->Void)
{
var request = URLRequest.init(url: URL.init(string: url)!)
request.httpMethod = "POST"
let dataTask = URLSession.shared.dataTask(with: request) { (data, response, error) in
if data != nil
{
do{
let responseDict = try JSONSerialization.jsonObject(with: data!, options: [])
let someStruct = SomeStruct.init(dict: responseDict as! [String : Int])
print(someStruct)
completionHandler(someStruct.status!)
}catch
{
}
}
}
dataTask.resume()
}
上面代码中使用的struct
struct SomeStruct {
var status:Int?
init(dict: [String:Int])
{
status = dict["status"]
}}
答案 3 :(得分:0)
而不是
print("Result Failed")
把这个
self.deliveryProduct(json: json, receiptData: receiptData)