从 SwiftyJSON API 分配已解析的 JSON 显示错误
Assigning parsed JSON from SwiftyJSON API shows error
我最近从 Objective-C 更新到 Swift,以本机方式解析 JSON 时真的很混乱,所以在 Stack Overflow 上搜索时我发现了 SwiftyJSON API,而且真的很酷。将已解析的 JSON 值分配给标签时出现错误。我已将结果存储在一个数组中,但在 tableview 上显示时却显示错误。
//Array where I store the parsed JSON
var categoryCount = [Int]()
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view.
getData()
}
func getData() {
Alamofire.request(.GET, "http://www.artively.com/api/MobileApi/get_parent_category")
.responseJSON { response in
if let value = response.result.value {
let json = JSON(value)
self.parseJSON(json)
}
}
}
func parseJSON(json: JSON) {
for result in json["data"].arrayValue {
print("The count are",result["product_count"].int!)
self.categoryCount.append(result["product_count"].int!)
}
print("The category count are", categoryCount.count)
}
最后,当我执行这段代码时,应用程序崩溃了:
cell.countLable.text = "\(categoryCount[indexPath.row])"
//Error appear in above code
这是 JSON 结果:
{
"responsecode": "200",
"responsemsg": "Successfull",
"data": [
{
"pk_category_id": 60,
"category_name": "Collage",
"category_logo": "http://www.artively.com//Upload/category_logo/28102015163738_collage_icon.png",
"category_logo_selected": "http://www.artively.com//Upload/category_logo/28102015163738_collage_icon.png",
"product_count": 10
},
{
"pk_category_id": 65,
"category_name": "Contemporary",
"category_logo": "http://www.artively.com//Upload/category_logo/28102015163521_contempory_icon.png",
"category_logo_selected": "http://www.artively.com//Upload/category_logo/28102015163521_contempory_icon.png",
"product_count": 242
},
...So on
在上面的响应中,我已经解析了 "product_count" 的值,将其存储在数组中并显示在 tableview 单元格上,但是应用程序崩溃了...
解析后你应该调用 self.tableView.reloadData()
。然后还要确保您正在实施此方法:
override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return self.categoryCount.count
}
这将确保行数与数组中的元素一样多,因此 indexPath.row
不会超出数组边界。
我最近从 Objective-C 更新到 Swift,以本机方式解析 JSON 时真的很混乱,所以在 Stack Overflow 上搜索时我发现了 SwiftyJSON API,而且真的很酷。将已解析的 JSON 值分配给标签时出现错误。我已将结果存储在一个数组中,但在 tableview 上显示时却显示错误。
//Array where I store the parsed JSON
var categoryCount = [Int]()
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view.
getData()
}
func getData() {
Alamofire.request(.GET, "http://www.artively.com/api/MobileApi/get_parent_category")
.responseJSON { response in
if let value = response.result.value {
let json = JSON(value)
self.parseJSON(json)
}
}
}
func parseJSON(json: JSON) {
for result in json["data"].arrayValue {
print("The count are",result["product_count"].int!)
self.categoryCount.append(result["product_count"].int!)
}
print("The category count are", categoryCount.count)
}
最后,当我执行这段代码时,应用程序崩溃了:
cell.countLable.text = "\(categoryCount[indexPath.row])"
//Error appear in above code
这是 JSON 结果:
{
"responsecode": "200",
"responsemsg": "Successfull",
"data": [
{
"pk_category_id": 60,
"category_name": "Collage",
"category_logo": "http://www.artively.com//Upload/category_logo/28102015163738_collage_icon.png",
"category_logo_selected": "http://www.artively.com//Upload/category_logo/28102015163738_collage_icon.png",
"product_count": 10
},
{
"pk_category_id": 65,
"category_name": "Contemporary",
"category_logo": "http://www.artively.com//Upload/category_logo/28102015163521_contempory_icon.png",
"category_logo_selected": "http://www.artively.com//Upload/category_logo/28102015163521_contempory_icon.png",
"product_count": 242
},
...So on
在上面的响应中,我已经解析了 "product_count" 的值,将其存储在数组中并显示在 tableview 单元格上,但是应用程序崩溃了...
解析后你应该调用 self.tableView.reloadData()
。然后还要确保您正在实施此方法:
override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return self.categoryCount.count
}
这将确保行数与数组中的元素一样多,因此 indexPath.row
不会超出数组边界。