访问接口返回数据类型为List<List<model>>,现在想将其中的model插入数据库,感觉一点点循环有点傻,0.0...,各位有没有其他的方法?
认证高级PHP讲师
C#的话:
var flat = list.SelectMany(l=>l).ToList();
Java的话:
List<model> flat = list.stream().flatMap(List::stream).collect(Collectors.toList());
list.stream().flatMap(model-> model.stream()).forEach(System.out::println);
数据结构使然,循环吧
雷雷
自己要不循环。要不接住其他函数来帮你完成循环。
C#的话:
Java的话:
list.stream().flatMap(model-> model.stream()).forEach(System.out::println);
数据结构使然,循环吧
雷雷
自己要不循环。要不接住其他函数来帮你完成循环。