1.前端后台对象列表传值
数据样式
前端代码
后端代码
2.基本类型数组传值
后端代码
前端代码
3.给动态生成的标签(未生成时)添加事件
$(document).on("click",'#id',
function(){
alert("ok");
});
4.列表更具两个属性去重
List<Xp> distinctClass = xpList.stream().collect(Collectors.collectingAndThen(Collectors.toCollection(() -> new TreeSet<>(Comparator.comparing(xp-> xp.getpId() + ";" +xp.getuId() ))), ArrayList::new));
5.列表更具对象属性排序
6.基本数据类型列表去重
List<Integer> newList = pIds.stream().distinct().collect(Collectors.toList());//去重
7.获取对象列表某个属性创建列表
List<Integer> qIds=xps.stream().map(Xp::getqId).collect(Collectors.toList());
来源:CSDN
作者:单筱风
链接:https://blog.csdn.net/weixin_42408648/article/details/103993471