Swift HTTP 请求在模拟器上工作,但在真实设备上不起作用



我创建了一个watchOS应用程序,该应用程序从API请求值并将其显示在标签上。它在模拟器中运行良好,但是当我在Apple Watch上执行它时,它崩溃并显示以下错误:

[ERROR] There is an unspecified error with the connection
fatal error: unexpectedly found nil while unwrapping an Optional value

第一个错误是由我的代码生成的。

我写的代码是:

func price_request() -> NSData? {
    guard let url = NSURL(string: "https://api.xxxxx.com/xxx.php") else {
        return nil
    }
    guard let data = NSData(contentsOfURL: url) else {
        print("[ERROR] There is an unspecified error with the connection")
        return nil
    }
    print("[CONNECTION] OK, data correctly downloaded")
    return data
}
func json_parseData(data: NSData) -> NSDictionary? {
    do {
        let json: AnyObject = try NSJSONSerialization.JSONObjectWithData(data, options: NSJSONReadingOptions.MutableContainers) as! Dictionary<String, AnyObject>
        print("[JSON] OK!")
        return (json as? NSDictionary)
    } catch _ {
        print("[ERROR] An error has happened with parsing of json data")
        return nil
    }
}

我还尝试添加应用程序传输安全绕过,如果由于对 HTTPS URL 的请求而不需要它,但它不起作用。

你能帮帮我吗?

谢谢

尝试使用 NSURLSession 获取数据...

//declare data task
var task: URLSessionDataTask?
//setup the session
let url = URL(string:"https://url.here")!
let session = URLSession(configuration: URLSessionConfiguration.default)
 task = session.dataTask(with: url){ (data, res, error) -> Void in
        if let e = error {
            print("dataTaskWithURL fail: (e.localizedDescription)")
            return
        }
        if let d = data {
           //do something
        }
    }
    task!.resume()

相关内容

最新更新