访问旧版本网站的 URLSession 数据任务?

URLSession datatask accessing older version of website?

我正在使用 URLSession 从我的网站抓取 JSON 数据。我的代码抛出各种与转换类型相关的错误,因此我在代码中添加了一些打印语句,发现此函数出于某种原因访问了我网站的旧版本。我已经更新了网站的数据,并通过自己访问网站和使用 Rested 验证了新数据是否正确显示。但是,下面代码中的打印语句会生成旧数据。该代码不从磁盘读取数据,所以我不确定为什么会这样。

出于隐私目的,我已从我的代码中删除了该网站的 link,但除此之外可以在下面找到该函数。

   func websiteToDisk() {

        let config = URLSessionConfiguration.default

        config.waitsForConnectivity = true

        let defaultSession = URLSession(configuration: config)

        let url = URL(string: someURL)

        let task = defaultSession.dataTask(with: url!) { data, response, error in

            do {

                print("Getting information from website")

                if let error = error {

                    print(error.localizedDescription)

                } else if let data = data,

                    let response = response as? HTTPURLResponse,

                    response.statusCode == 200 {

                    //do {

                    let jsonDecoder = JSONDecoder()

                    print("about to dcode")

                    let decodedData = try JSONSerialization.jsonObject(with: data, options: []) as? [String: Any]//try jsonDecoder.decode([String: [String]].self, from: data)

                    print(decodedData)

                    print("accessing dictionary")

                    print(decodedData!["busLoops"])

                    let toWrite = decodedData!["busLoops"] as! [String]



                    let documentDirectoryURL = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask).first!

                    let busLoopsURL = documentDirectoryURL.appendingPathComponent("busLoops").appendingPathExtension("json")



                    let jsonEncoder = JSONEncoder()

                    let jsonData = try jsonEncoder.encode(toWrite)

                    try jsonData.write(to: busLoopsURL)

                    //} catch { print(error)}

                }

            }

            catch { print(error)}

        }

        task.resume()

    }

尝试忽略本地缓存数据

guard let url = URL(string: "http://....") else{
    return
}
let request = NSMutableURLRequest(url: url)
request.cachePolicy = .reloadIgnoringCacheData
let task = URLSession.shared.dataTask(with: request as URLRequest) { (data, resp, error) in

}
task.resume()