我正在使用SwiftyJSON來讀取API響應。如何存儲JSON響應並保存到JSON文件
我想通過創建JSON文件離線在用戶設備本地存儲JSON響應。
我的函數返回創建JSON:現在
Alamofire.request(HostURL)
.responseJSON { response in
guard response.result.isSuccess else {
debugPrint("getCourseDataFromCourseId: Error while fetching tags \(String(describing: response.result.error))")
failure(response.result.error! as NSError)
return
}
guard response.result.error == nil else {
debugPrint(response.result.error!)
return
}
guard let json = response.result.value else {
debugPrint("JSON Nil")
return
}
let swiftJson = JSON(json)
告訴我們你試過的東西 –
我已經添加了我的代碼。 –