-2
我每次嘗試修復它都會收到此錯誤。請幫助使用未解決的indetifier jsonResult
do {
if let jsonResult = try JSONSerialization.jsonObject(with: data, options: []) as? [String:AnyObject] {
print(jsonResult)
}
} catch let error as NSError {
print(error.localizedDescription)
}
if (jsonResult != nil) {
print(jsonResult)
} else {
// couldn't load JSON, look at error
}
什麼錯誤?我沒有看到錯誤?請更加具體 – Scriptable
看看'{'和'}'if(jsonResult!= nil){'是否在聲明之外。如果(jsonResult!= nil){//錯誤出現在這裏,請將代碼放在你打印的地方'print' – Larme
。 print(jsonResult) –