remove使用

Posted xiaowoniulx

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了remove使用相关的知识,希望对你有一定的参考价值。

        // 根据付款确认书ID获取核心企业Id,签约主体Id,金融机构Id 查询业务审核项目定义表
        List<Record> approvefileList = this.listApproveDefine(controller);
        // 调用筛选的方法
        approvefileList = controller.getListShow(approvefileList, uuid);

        for (Record otherFile : otherFileList) {
            // 获取文件的id
            String otherFileDocumentId = otherFile.getStr("documentId");
            // 便利
            for (Record approvefile : approvefileList) {
                // 如果2个id相同,则把它移除。
                if (otherFileDocumentId.equals(approvefile.get("fileId").toString())) {
                    otherFile.remove();
                }
            }
        }

 

以上是关于remove使用的主要内容,如果未能解决你的问题,请参考以下文章

动画移除片段

thymeleaf中的th:remove用法

使用删除与隐藏时未调用自定义动画

片段不去活动 [Android]

怎样移除当前节点

201621044079 韩烨作业09-集合与泛型