将JSON结果与String进行比较

时间:2017-06-02 14:53:37

标签: json swift

我正在尝试从网址获取JSON结果,并检查它是否等于“OK”,这样我就可以预先形成一个segue。我目前收到错误: Binary operator '==' cannot be applied to operands of type 'Any' and 'String'

这是我的代码:

        let task = URLSession.shared.dataTask(with: url!) { (data, response, error) in
        if error != nil {
            print("LightningDB Error")
        } else {
            if let content = data {
                do {
                    let jsonData = try JSONSerialization.jsonObject(with: content, options: JSONSerialization.ReadingOptions.mutableContainers) as AnyObject

                    if let responseData = jsonData as? NSDictionary {
                        if let response = responseData["response"] {
                            if response == "OK" {
                                performSegue(withIdentifier: "loginSegue", sender: responseString)
                            } else {
                                warnField.text = "This user does not exist."
                            }
                        }
                    }

                } catch {

                }
            }
        }
    }

    task.resume()

谢谢!

P.S。做print(response)就好了。

1 个答案:

答案 0 :(得分:1)

编译器必须知道response

的(预期)类型
if let jsonData = try JSONSerialization.jsonObject(with: content) as? [String:Any] {
    if let response = jsonData["response"] as? String { ...

一如既往:

  • 不要在Swift中使用NSDictionary
  • 永远不要在Swift中使用.mutableContainers,它毫无意义。