flutter解析json数组

直接上代码:

List responseJson = json.decode(response);
List<CardBean> cardbeanList = responseJson.map((m) => new CardBean.fromJson(m)).toList();
CardBean cardBean = cardbeanList.first;

其中response的格式如下:
[
{ “img”: “images/viio-2”,“price”: 12.0,“title”: “海边码头的爱情主题结婚照拍摄”,“ftitle”: “让大海见证你们的爱情,让幸福记录在码头上”,“num”: 0}
,{ “img”: “images/viio-2”,“price”: 12.0,“title”: “海边码头的爱情主题结婚照拍摄”,“ftitle”: “让大海见证你们的爱情,让幸福记录在码头上”,“num”: 0}
]

注意:response是字符串,而不是JSON对象.

    原文作者:philosowhy
    原文地址: https://blog.csdn.net/philosowhy/article/details/84592040
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞