0
我該如何解析這個JSON?swift從URL解析JSON
{
"telefon":"05538690671"
}
我的代碼:
let url = NSURL(string: "http://localhost.192.168.1.40.xip.io:8888/store1.php")
//fetching the data from the url
URLSession.shared.dataTask(with: (url as URL?)!, completionHandler: {(data, response, error) -> Void in
if let jsonObj = try? JSONSerialization.jsonObject(with: data!, options: .allowFragments) as? NSDictionary {
//printing the json in console
print(jsonObj!.value(forKey: "telefon")!)
對不起我的英語
遺憾,當我從跟蹤這個dataTask跳碼到結束的代碼 –
@ÜmitGündüz這意味着的'guard'條件之一已經失敗。 –
@ÜmitGündüz我添加了一個新版本,在某些失敗情況下調試更多。 –