为什么JSON对于纬度和经度以外的所有内容都返回nil?

时间:2019-02-25 23:30:16

标签: json swift tableview decodable

import UIKit

class ViewController: UIViewController {

@IBOutlet weak var tableview: UITableView!
var weatherList: [weatherJSON] = []


func downloadJSON() {
    let jsonUrlString = "https://api.darksky.net/forecast/59c6b6b7efd5c3fc0f617338cfae6c48/40.7127,-74.0059"
    guard let url = URL(string: jsonUrlString) else {return}
    URLSession.shared.dataTask(with: url) { (data, response, err) in
        guard let data = data else {return}

        do {
            let JSON = try JSONDecoder().decode(weatherJSON.self, from: data)
            self.weatherList.append(JSON)
            print(self.weatherList)
            DispatchQueue.main.async {
                self.tableview.reloadData()
            }
        } catch let jsonErr {
            print("Error serializing json", jsonErr)
        }

        }.resume()
}

override func viewDidLoad() {
    super.viewDidLoad()
    downloadJSON()

}
}


extension ViewController: UITableViewDataSource {
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    return weatherList.count
}

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) as! countryCell


cell.nameLabel?.text = "\(String(describing: weatherList[indexPath.row].latitude))"


    return cell
}
}

extension ViewController: UITableViewDelegate {
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
    performSegue(withIdentifier: "segue1", sender: nil)
}
}

编辑:我通过使用字符串插值成功调用了JSON数据-

cell.nameLabel?.text =“(String(描述:weatherList [indexPath.row] .latitude))”

但是现在,在我的通话中唯一返回零的信息是纬度和经度。为什么从JSON调用返回的唯一内容成功为nil?我打错电话了吗?谢谢您到目前为止的所有帮助。如果我要发布新帖子,请告诉我。我认为这是同一主题,因为它与我昨天的原始帖子几乎相同。

Stackoverflow本身不会让我发布而不添加更多文本,但是因为我已经说了我需要说的所有内容,所以这只是填充。

1 个答案:

答案 0 :(得分:-1)

为了获得更好/更干净的代码,也许您想将一个函数(可能是func makeRequest()之类的API调用分开,以便仅在您的viewDidLoad.中调用该函数

你有

var weatherList: [weatherJSON] = []

这是一个包含要表显示的weatherJSON对象的列表,但问题出在您的请求中,您在其中重新加载表中的数据,但未将JSON响应保存在weatherList中。 您应该首先将JSON响应保存在变量weatherList中,或将结果附加到该数组中。这样做,您将可以在以下时间填充表格:cell.nameLabel?.text = weatherList[indexPath.row]

此外,您需要添加要显示的天气列表对象的属性。 类似于weatherList[indexPath.row].name或对象具有的属性名称。

此外,我建议使用一些库来发出HTTP请求,例如AlamoFire和SwiftyJson,以将JSON响应映射到对象。

使用我提到的库,您的整个API调用和表函数可以像这样         func getWeather(){

    let url: String = "http://example.com/api/weather/"

    AFWrapper.requestGETURL(url, success: {
        (JSONResponse) -> Void in

        for item in JSONResponse{
            let weatherList = [WeatherList(fromJson: item.1)]

            for weather in weatherList {
                self. weatherList.append(weather)
            }
        }

        self.tableView.reloadData()
    })
    {
        (error) -> Void in
        print("Error \(error)")
    }




}

在您的表格功能中:

cell.nameLabel.text =  self.weatherList[indexPath.row].name

这可以通过AlamoFireWrapper类进行发布并获得如下get请求来实现: AlamoFireWrapper.swift

import UIKit
import Alamofire
import SwiftyJSON

class AFWrapper: NSObject {
    class func requestGETURL(_ strURL: String, success:@escaping (JSON) -> Void, failure:@escaping (Error) -> Void) {
        Alamofire.request(strURL).responseJSON { (responseObject) -> Void in



            if responseObject.result.isSuccess {
                let resJson = JSON(responseObject.result.value!)
                success(resJson)
            }
            if responseObject.result.isFailure {
                let error : Error = responseObject.result.error!
                failure(error)
            }
        }
    }

    class func requestPOSTURL(_ strURL : String, params : [String : AnyObject]?, headers : [String : String]?, success:@escaping (JSON) -> Void, failure:@escaping (Error) -> Void){

        Alamofire.request(strURL, method: .post, parameters: params, encoding: JSONEncoding.default, headers: headers).responseJSON { (responseObject) -> Void in



            if responseObject.result.isSuccess {
                let resJson = JSON(responseObject.result.value!)
                success(resJson)
            }
            if responseObject.result.isFailure {
                let error : Error = responseObject.result.error!
                failure(error)
            }
        }
    }
}