直接上代码:
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对象.