从GoogleApiBooks解析JSON

时间:2016-12-10 11:59:35

标签: json swift xcode alamofire swifty-json

我试图解析这个JSON,但它不起作用。

这是JSON:

{
  "kind": "books#volumes",
  "totalItems": 1,
  "items": [
    {
      "kind": "books#volume",
      "id": "uCHmPQAACAAJ",
      "etag": "aBZ3KnoRsq4",
      "selfLink": "https://www.googleapis.com/books/v1/volumes/uCHmPQAACAAJ",
      "volumeInfo": {
        "title": "Psicologia delle folle",
        "authors": [
          "Gustave Le Bon"
        ],
        "publishedDate": "2004",
        "industryIdentifiers": [
          {
            "type": "ISBN_10",
            "identifier": "8850206240"
          },
          {
            "type": "ISBN_13",
            "identifier": "9788850206247"
          }
        ],
        "readingModes": {
          "text": false,
          "image": false
        },
        "pageCount": 251,
        "printType": "BOOK",
        "categories": [
          "Psychology"
        ],
        "maturityRating": "NOT_MATURE",
        "allowAnonLogging": false,
        "contentVersion": "preview-1.0.0",
        "language": "it",
      },
      "saleInfo": {
        "country": "IT",
        "saleability": "NOT_FOR_SALE",
        "isEbook": false
      },
      "accessInfo": {
        "country": "IT",
        "viewability": "NO_PAGES",
        "embeddable": false,
        "publicDomain": false,
        "textToSpeechPermission": "ALLOWED",
        "epub": {
          "isAvailable": false
        },
        "pdf": {
          "isAvailable": false
        },
        ,
        "accessViewStatus": "NONE",
        "quoteSharingAllowed": false
      }
    }
  ]
}

这是我正在使用的代码:

override func viewDidLoad() {
    super.viewDidLoad()
    // Do any additional setup after loading the view, typically from a nib.

    var url = "https://www.googleapis.com/books/v1/volumes?q=isbn9788850206247&key=my-key"


    Alamofire.request(url).responseJSON { (responseData) -> Void in
        if((responseData.result.value) != nil) {
            let swiftyJsonVar = JSON(responseData.result.value!)

            if let resData = swiftyJsonVar["items"].arrayObject {
                self.arrRes = resData as! [[String:AnyObject]]
                print(self.arrRes)
            }
            if self.arrRes.count > 0 {
                self.tableProva.reloadData()
            }
        }
    }
}

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    let cell = tableProva.dequeueReusableCell(withIdentifier: "cellProva", for: indexPath) as! CellProvaClass
    var dict = arrRes[indexPath.row]
    cell.titleLabel?.text = dict["title"] as? String
    cell.authorLabel?.text = dict["authors"] as? String
    return cell
}

我该如何解决这个问题?

2 个答案:

答案 0 :(得分:0)

在线上解析JSON时

if let resData = swiftyJsonVar["items"].arrayObject {

您将收到一个NSDictionary对象,其中包含所有其他嵌套元素&键中的数组。在tableView委托中,您通过将其取消装箱到NSDictionary对象直接访问arrRes中的值。所有条目都在一个名为items的数组中可用,该数组还有一个嵌套对象volumeInfo,其中包含有关title&的信息。另一个Authors数组。

您需要从arrRes对象中提取更多嵌套对象,以便在tableView cellForRowAtIndex委托函数中使用它。

如果您需要任何进一步的帮助,请与我们联系。

答案 1 :(得分:0)

这是您的JSON响应(简短格式):

enter image description here

这是数据结构(数组和字典格式): enter image description here

现在您必须访问:titleauthors所以这是您在cellforRowAtIndexPath方法中的值,名称 dict 的字典存储{{ 1}}:

所以你必须用这种方式来访问标题:

volumeInfo ( a Dictionary)

然后访问author是一个数组,以便在cell.titleLabel?.text = dict["volumeInfo"]["title"] as? String //To Fetch Author array if let authorArray = dict["volumeInfo"]["authors"] as? NSArray{ print(authorArray) } 中显示值的索引。

在第二个屏幕截图中用cell.authorLabel

括起来的那些

首先尝试显示标题,然后尝试获取作者数组的值并根据您的要求进行设置。

如果有任何进一步的问题,请随时发表评论。