localNavListjson转换成list了为什么还要转换
来源:12-4 首页大接口Dao层实现和调用-1【Dao层设计】
口渴的時候喝可樂
2021-06-12
写回答
1回答
-
CrazyCodeBoy
2021-06-15
var localNavListJson = json['localNavList'] as List; List<CommonModel> localNavList = localNavListJson.map((i) => CommonModel.fromJson(i)).toList();
为转换钱localNavListJson中存放的是Map类型,这层转换是将其中的Map转换成CommonModel以方便使用。
00
相似问题