将数据从JSON获取到字典Swift 3

时间:2017-08-19 00:13:16

标签: json xml swift parsing dictionary

我试着拥有一些带有一些JSON值的字典,但我无法获得这些值。

我有一个在控制台中打印的XML,如下所示:

Optional(<DocumentElement>  <QRCode>    <QRCodeID>1</QRCodeID>    <Description>Some Data</Description>    <Latitude>Some Data</Latitude>    <Length>Some Data</Longitud>    <Length>Some Data</LongDescription>  </QRCode></DocumentElement>)

然后我使用一个像这样打印出来的库将它解析为JSON:

["DocumentElement": {
QRCode =     {
    Description = "Some Data";
    Latitude = "Some Data";
    LongDescription = "Some Data";
    Length = "Some Data";
    QRCodeID = 1;
};
}]

这是我使用SwiftyJSON的代码,它没有带来任何东西:

let json = JSON(data)
  if let description = json[0]["DocumentElement"]["QRCode"]["Description"].string 
{
  print(description)
}

0 个答案:

没有答案