无法解析数组JSON解码器Swift 4

时间:2018-11-10 03:30:01

标签: ios json swift jsondecoder

我无法获取链接的JSON数据,因此总是会收到错误。 "Expected to decode Array<Any> but found a dictionary instead."谢谢。

我的JSON

{
server_response: [
{
id: "1",
magazine_title: "Volume 1 Issue 1",
mobile_link: "",
magazine_img: "https://www.pcbuyersguide.com.ph/wp-content/uploads/magazine_cover/pcbg.png",
mobile_zip: ""
},
{
id: "2",
magazine_title: "Volume 1 Issue 2",
mobile_link: "",
magazine_img: "https://www.pcbuyersguide.com.ph/wp-content/uploads/magazine_cover/pcbg.png",
mobile_zip: ""
},
{
id: "3",
magazine_title: "Volume 1 Issue 4",
mobile_link: "",
magazine_img: "https://www.pcbuyersguide.com.ph/wp-content/uploads/magazine_cover/pcbg.png",
mobile_zip: ""
},
{
id: "4",
magazine_title: "Volume 2 Issue 1",
mobile_link: "",
magazine_img: "https://www.pcbuyersguide.com.ph/wp-content/uploads/magazine_cover/pcbg.png",
mobile_zip: ""
}]

我的结构

struct Root: Decodable{

       var server_response: [server_details]
    }

    struct server_details: Decodable{

        var  magazine_title : String
        var magazine_img : String
        var mobile_link: String

    }

我从数据服务器中提取功能

  // FETCH MAGAZINE
func fetchDatafromServer(){

    guard let url = URL(string: "https://www.pcbuyersguide.com.ph/wp-content/mobileapp/pcbg_magazine_data.php") else {return}
    URLSession.shared.dataTask(with: url) { (data, res, err) in

        guard let data = data else {return}

        do{
            let articles = try JSONDecoder().decode([Root].self, from: data)

            for info in articles {

                self.magazine_title.append(info.server_response[1].magazine_title)


            }

            DispatchQueue.main.async {

                self.collectionView?.reloadData()
            }
        }
        catch let jsonErr{

            print(jsonErr)
        }

        }.resume()
}

1 个答案:

答案 0 :(得分:1)

您说的是decode([Root].self...,就好像您的JSON是一个Root数组一样。但这不是根的数组。这是一个根。说decode(Root.self

然后更改

for info in articles

收件人

for info in articles.server_response

那是数组。