【发布时间】:2018-07-11 02:00:41
【问题描述】:
我已经实现了一个有逻辑错误的完成块。我希望在单击 checkOutBtn 时首先触发 checkFields 以检查所有文本字段是否不为空,然后再触发 addDeliveryAddress() 方法插入数据库,然后再执行 sesueway。但是当点击 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)
}
}
}
【问题讨论】:
标签: swift