如何在Flutter中解析JSON列表

时间:2019-01-08 16:33:20

标签: json parsing flutter

我们如何在Flutter中解析此类List数据?我尝试了不同的型号,但失败了。以下是数据:

[
    {
        "course":"Computer Architecture Fall 2018 - KHI",
        "pending_assignment":[
            {
                "name":"OOAD Project Fall 2018 Section B & D",
                "dueDate":"Dec 14, 2018 10:00 pm"
            }
        ]
    },
    {
        "course":"Object Oriented Analysis and Design Fall 2018 - KHI",
        "pending_assignment":[
            {
                "name":"OOAD Project Fall 2018 Section B & D",
                "dueDate":"Dec 14, 2018 10:00 pm"
            }
        ]
    }
]

1 个答案:

答案 0 :(得分:-1)

正如您可以在此网站(http://json.parser.online.fr/)上查看的那样,该JSON无效且包含错误。

一般来说,如何解析JSON,可以使用json.decode(jsonString);包中的dart:convert函数。有关该信息的更多信息,请访问以下站点:https://flutter.io/docs/development/data-and-backend/json