在线考试系统开发知识点(前端后台对象列表传值,基本类型数组传值。。。)

 ̄綄美尐妖づ 提交于 2020-01-15 22:01:27

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());
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!