迅速完成进度

时间:2018-07-10 16:02:12

标签: swift

我实现了具有逻辑错误的完成块。我想在单击checkOutBtn时首先触发checkFields,以检查所有文本字段是否都不为空,然后再触发执行添加方式之前,它触发addingDeliveryAddress()方法插入数据库。但是,当单击checkOutBtn时,它无法正常工作,并继续执行segueway。感谢你的帮助。谢谢

   @IBAction func checkOutBtn(_ sender: Any) {

    checkFields { (results) in
        if results {
            self.addingDeliveryAddress()
        }
    }
}


func checkFields(_ completion: @escaping (Bool) -> ()){
        if (recipientName.text?.isEmpty)! {
            errorMessageLbl.textColor = UIColor.red
            errorMessageLbl.text = "Enter Recipient Name"
            completion(false)
        }else if (recipientMobile.text?.isEmpty)! {
            errorMessageLbl.textColor = UIColor.red
            errorMessageLbl.text = "Enter Recipient Mobile Number"
            completion(false)
        }else if (recipientArea.text?.isEmpty)! {
            errorMessageLbl.textColor = UIColor.red
            errorMessageLbl.text = "Enter Recipient Area"
            completion(false)
        }else if (recipientAddress.text?.isEmpty)! {
            errorMessageLbl.textColor = UIColor.red
            errorMessageLbl.text = "Enter Recipient Address"
            completion(false)
        }
        completion(true)
    }



    //Adding Delivery Address
    func addingDeliveryAddress(){

        //getting user data from defaults
        let defaultValues = UserDefaults.standard
        let userId = defaultValues.string(forKey: "userid")

        //creating parameters for the post request
        let parameters: Parameters=[
            "recipientName":recipientName.text!,
            "recipientPhoneNumber":recipientMobile.text!,
            "recipientArea":recipientArea.text!,
            "recipientAddress":recipientAddress.text!,
            "nearestLandmark":recipientLandmark.text!,
            "userId":Int(userId!)!
        ]

        //Constant that holds the URL for web service
        let URL_ADD_DELIVERY_ADDRESS = "http://localhost:8888/restaurant/addDeliveryAddress.php?"

        Alamofire.request(URL_ADD_DELIVERY_ADDRESS, method: .post, parameters: parameters).responseJSON {
            response in
            //printing response
            print(response)

            let result = response.result.value

            //converting it as NSDictionary
            let jsonData = result as! NSDictionary

            //if there is no error
            if(!(jsonData.value(forKey: "error") as! Bool)){

                self.performSegue(withIdentifier: "toCheckOut", sender: self)

            }else{

                let alert = UIAlertController(title: "No Delivery Address", message: "Enter Delivery Address to continue", preferredStyle: .alert)

                alert.addAction(UIAlertAction(title: "Ok", style: .destructive, handler: nil))
                //alert.addAction(UIAlertAction(title: "No", style: .cancel, handler: nil))

                self.present(alert, animated: true)
            }
        }
    }

2 个答案:

答案 0 :(得分:0)

为什么要完成一个区块?没有异步过程。

我建议采用这种方式,成功时将(直接)返回错误字符串或空字符串。

@IBAction func checkOutBtn(_ sender: Any) {

    let result = checkFields()
    if result.isEmpty {
        self.addingDeliveryAddress()
    } else {
       errorMessageLbl.textColor = UIColor.red
       errorMessageLbl.text = "Enter Recipient " + result
    }
}

func checkFields() -> String {
    if recipientName.text!.isEmpty {
        return "Name"
    } else if recipientMobile.text!.isEmpty {
        return "Mobile Number"
    } else if recipientArea.text!.isEmpty {
        return "Area"
    } else if recipientAddress.text!.isEmpty {
        return "Address"
    }
    return ""
}

答案 1 :(得分:0)

在您的代码中,您使用 @转义结束。这是错误的,因为您没有在此闭包体内执行任何异步操作。使用 @escaping 时,闭包将保留下来以便以后执行,并且函数的主体也将被执行。这就是为什么 addingDeliveryAddress()在检查任何内容之前被触发的原因。

您的关闭函数应为 @nonescaping
func checkFields(_ completion: (Bool) -> ()){
        if (recipientName.text?.isEmpty)! {
            errorMessageLbl.textColor = UIColor.red
            errorMessageLbl.text = "Enter Recipient Name"
            completion(false)
        }else if (recipientMobile.text?.isEmpty)! {
            errorMessageLbl.textColor = UIColor.red
            errorMessageLbl.text = "Enter Recipient Mobile Number"
            completion(false)
        }else if (recipientArea.text?.isEmpty)! {
            errorMessageLbl.textColor = UIColor.red
            errorMessageLbl.text = "Enter Recipient Area"
            completion(false)
        }else if (recipientAddress.text?.isEmpty)! {
            errorMessageLbl.textColor = UIColor.red
            errorMessageLbl.text = "Enter Recipient Address"
            completion(false)
        }
        completion(true)
    }