drruhc4944 2016-08-31 03:34
浏览 103
已采纳

如何使用php将iOS应用程序连接到mySQL数据库

So this is the piece of code causing a problem. It gives me a fatal error and says that an optional value is giving nil.

How do i fix this? This only works when I enter the first field only (the name field) and then submit, it pops up on my database. However, when I fill in more than one field, it crashes.

My code:

@IBAction func registerButtonTapped(sender: AnyObject) {

    let strURL: String = "http://www.blabla.com.eg/blabla.php?name=\(nameField.text!)&company=\(companyField.text!)&email=\(emailField.text!)&phonenumber=\(phoneNumberField.text!)"
    let dataURL: NSData = NSData(contentsOfURL: NSURL(string: strURL)!)!
    let strResult: String = String(data: dataURL, encoding: NSUTF8StringEncoding)!
    print("\(strResult)")


    self.dismissViewControllerAnimated(true, completion: nil)

}
  • 写回答

1条回答 默认 最新

  • dongnan1989 2016-08-31 04:35
    关注

    Your problem is that one (or more) of your optionals is nil when you try to access it. Its important to understand optionals if you are doing swift development, I'd recommend going through the documentation.

    let dataURL: NSData = NSData(contentsOfURL: NSURL(string: strURL)!)!
    let strResult: String = String(data: dataURL, encoding: NSUTF8StringEncoding)!
    

    In the code above, when you use ! you are telling swift that you are 100% sure that optional contains a value. There might be an issue in either your construction of a url NSURL(strUrl)! or when calling the NSData(...) constructor and unwrapping its result with !.

    Try something like this:

    if let url = NSURL(string: strURL) {
       if let data = NSData(contentsOfURL: url) {
           var strResult = String(data: data, encoding: NSUTF8StringEncoding)
           print(strResult ?? "Something Went Wrong")
       }
       else { // get rid of this else when you find your issue
           print("Could not instantiate an NSData object out of that url")
       }
    }
    else {  // get rid of this else when you find your issue
       print("Your URL is nil!, check the strUrl")
    }
    

    Here, we first unwrap the NSURL as NSURL(string) constructor returns an optional (the string you pass might be an invalid URL). We then unwrap the NSData object and then coalesce the strResult when printing it (as its also an optional).

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 arduino控制ps2手柄一直报错
  • ¥15 使用rabbitMQ 消息队列作为url源进行多线程爬取时,总有几个url没有处理的问题。
  • ¥85 maple软件,solve求反函数,出现rootof怎么办?
  • ¥15 求chat4.0解答一道线性规划题,用lingo编程运行,第一问要求写出数学模型和lingo语言编程模型,第二问第三问解答就行,我的ddl要到了谁来求了
  • ¥15 Ubuntu在安装序列比对软件STAR时出现报错如何解决
  • ¥50 树莓派安卓APK系统签名
  • ¥65 汇编语言除法溢出问题
  • ¥15 Visual Studio问题
  • ¥20 求一个html代码,有偿
  • ¥100 关于使用MATLAB中copularnd函数的问题