我一直在研究我的第一个iOS Swift项目,我遇到了致命错误。只有在从被调用的API获取错误消息时,才会在解除可选值时意外发现此错误报告为nil。
这是Swift代码
@IBAction func pressScan(sender: AnyObject) {
let barcode = lastCapturedCode
print("Received following barcode: \(barcode)")
let url = "https://api.nutritionix.com/v1_1/item?upc="
let urlWithUPC = url + barcode! + "&appId=[app ID goes here]&appKey=[app key goes here]"
print("API Query: "+urlWithUPC)
NSURLSession.sharedSession().dataTaskWithURL(NSURL(string: urlWithUPC)!) { data, response, error in
// Handle result
print("Checked the bar code")
// let JSONData = NSData()
do {
let JSON = try NSJSONSerialization.JSONObjectWithData(data!, options:NSJSONReadingOptions(rawValue: 0))
guard let JSONDictionary :NSDictionary = JSON as? NSDictionary else {
print("Not a Dictionary")
// put in function
return
}
print("JSONDictionary \(JSONDictionary)")
let foodScreenName = (JSONDictionary as NSDictionary)["item_name"] as! String
let foodBrandName = (JSONDictionary as NSDictionary)["brand_name"] as! String
let fullFoodName = foodBrandName + " " + foodScreenName
dispatch_async(dispatch_get_main_queue(),{
self.foodName.text = fullFoodName
});
}
catch let JSONError as NSError {
print("\(JSONError)")
}
}.resume
}
这是返回的带有错误的JSON结果
JSONDictionary {
"error_code" = "item_not_found";
"error_message" = "Item ID or UPC was invalid";
"status_code" = 404;
}
如果API找到该项目,则为JSON结果
JSONDictionary {
"item_id": "51c3d78797c3e6d8d3b546cf",
"item_name": "Cola, Cherry",
"brand_id": "51db3801176fe9790a89ae0b",
"brand_name": "Coke",
"item_description": "Cherry",
"updated_at": "2013-07-09T00:00:46.000Z",
"nf_ingredient_statement": "Carbonated Water, High Fructose Corn Syrup and/or Sucrose, Caramel Color, Phosphoric Acid, Natural Flavors, Caffeine.",
"nf_calories": 100,
"nf_calories_from_fat": 0,
"nf_total_fat": 0,
"nf_saturated_fat": null,
"nf_cholesterol": null,
"nf_sodium": 25,
"nf_total_carbohydrate": 28,
"nf_dietary_fiber": null,
"nf_sugars": 28,
"nf_protein": 0,
"nf_vitamin_a_dv": 0,
"nf_vitamin_c_dv": 0,
"nf_calcium_dv": 0,
"nf_iron_dv": 0,
"nf_servings_per_container": 6,
"nf_serving_size_qty": 8,
"nf_serving_size_unit": "fl oz",
}
答案 0 :(得分:1)
由于您的字典结构发生了变化,并且您不确定是否存在少数键,因此在使用它们之前必须进行安全检查:
if let screenName = (JSONDictionary as NSDictionary)["item_name"] {
foodScreenName = screenName as! String
}
if let brandName = (JSONDictionary as NSDictionary)["brand_name"] {
foodBrandName = brandName as! String
}