我收到此错误,我不知道为什么会得到它。它没有显示在图片中,但我确实导入了UIKit
和Alamofire
。如果你能让我知道问题是什么,那就太好了。
我认为主要问题出在Alamofire.request(.GET, currentWeatherURL)
部分。
func downloadWeatherDetails(completed: DownloadComplete) {
//Alamofire Download
let currentWeatherURL = URL(string: CURRENT_WEATHER_URL)!
Alamofire.request(.GET, currentWeatherURL).responseJSON { response in
let result = response.result
print(result)
}
}
答案 0 :(得分:3)
您的代码存在以下问题:
method
。Alamofire
URL
初始值设定项 - 此外,Alamofire
为您执行此操作自动,只需传递字符串作为参数。以下是您修改的代码:
func downloadWeatherDetails(completed: DownloadComplete) {
Alamofire.request(CURRENT_WEATHER_URL, method: .get).responseJSON { response in
let result = response.result
print(result)
}
}