无法读取数据,因为它的格式不正确 - HTTP网络

时间:2017-03-24 11:09:14

标签: ios iphone swift

代码

    let session = URLSession.shared

    // prepare json data
    let json: [String: Any] = ["email": "test_mobile@mysite.com"]

    let jsonData = try? JSONSerialization.data(withJSONObject: json)

    let proceedURL = NSURL(string:"https://mysitename.herokuapp.com/api/users/isUser")
    //let proceedURL = NSURL(string:"https://google.com")
    let request = NSMutableURLRequest(url: proceedURL! as URL)
    //HTTP Headers
    request.addValue("application/json", forHTTPHeaderField: "Content-Type")
    request.addValue("application/www.inception.v1", forHTTPHeaderField: "Accept")
    request.addValue("Authorization", forHTTPHeaderField: "Basic aW5jZXB0aW9uQGZ1cmRvOmljM=")
    request.httpMethod = "POST"
    //request.httpBody = jsonData


    // insert json data to the request
    request.httpBody = jsonData

    //create dataTask using the session object to send data to the server
    let task = session.dataTask(with: request as URLRequest, completionHandler: { data, response, error in

        guard error == nil else {
            return
        }

        guard let data = data else {
            return
        }

        // Print out response string
        let responseString = NSString(data: data, encoding: String.Encoding.utf8.rawValue)
        print("responseString = \(responseString!)")

        do {
            //create json object from data
            if let json = try JSONSerialization.jsonObject(with: data, options: .mutableContainers) as? [String: AnyObject] {
                print(json)
                // handle json...
            }

        } catch let error {
            print("error : " + error.localizedDescription)
        }

    })

    task.resume()

错误: 无法读取数据,因为格式不正确。

我是iphone应用程序开发的初学者,帮助我,并提供更好的建议,使网络连接(如在Android我使用的是Volley库)

实际回应是:

{
  "status": 1,
  "http_status_code": 200,
  "data": {
    "email": "test_mobile@mysite.com",
    "phone": "8090909000"
  }
}

我在Android上使用它并在邮差中测试。

// Print out response string
        let responseString = NSString(data: data, encoding: String.Encoding.utf8.rawValue)

上层代码响应是什么

2 个答案:

答案 0 :(得分:0)

html data

答案 1 :(得分:0)

使用Alamofire。

let json: [String: Any] = ["email": "test_mobile@mysite.com"]

Alamofire.request(.POST, "https://mysitename.herokuapp.com/api/users/isUser" , parameters: json, encoding:  .JSON).responseJSON {
            Response in
            switch Response.result {
            case .Success(let _data):
                let JsonData = JSON(_data)
                print("JsonData : \(JsonData)")


           //handle json


case .Failure(let _error):
                print(_error)
                let AlertBox = UIAlertController(title: "Connection Failed", message: "No Connection", preferredStyle: .Alert)
                let ActionBox = UIAlertAction(title: "Ok" , style: .Default, handler: { _ in})
                AlertBox.addAction(ActionBox)
                self.presentViewController(AlertBox, animated: true, completion: nil)
            }