Flutter报错:Unhandled Exception: type ‘_Map<String, dynamic>‘ is not a subtype of type ‘String‘
这个是因为我们在使用jsondecode()函数时,误把_Map类型带入jsondecode函数里面。jsondecode函数本身就是让json字符串解码为_Map类型json对象。然后接着就可以使用forEach来遍历json对象的键值对。比如jsonMap就是一个_Map类型:jsonMap.forEach((key,value){print('Key:$key');print('Value: