удалить функционал не работает должным образом, установите все флажки - PullRequest
0 голосов
/ 24 января 2019

Я передал массив Id сотрудника через вызов ajax в моем контроллере Spring.

function deleteEntries() {

                var empList = $('input[type=checkbox]:checked').map(function (_, el) {
                    return $(el).val();
                }).get();

                if (empList.length !== 0) {
                    var r = confirm("Are you sure want to remove multiple entries? \nWarning: This process cannot be undone");
                    if (r === true) {

                        $.ajax({
                            type: 'Post',
                            url: baseUrl + 'delete_all',
                            data: {
                                empList: empList

                            },
                            success: function (successMsg) {
                                location.reload();
                            },
                            fail: function (data) {
                                unblockMyScreen();
                                alert('Failed to retrieve data');
                            }
                        });


                    }
                } else
                {
                    alert("Choose atleast single record to delete.");
                }
            }.

Теперь в пользовательском интерфейсе у меня есть флажки, также я предоставляю функцию для удаления с помощьювыберите все сразу и удалите.

Теперь Когда я выберу все и нажму кнопку удаления, удаляется только одна запись. Однако, она работает нормально без , выберите все

Вот код удаления

  @RequestMapping(value = "/delete_all", method = RequestMethod.POST)
    @ResponseBody
    public boolean deleteMultipleRecord(@RequestParam(value = "empList[]", required = false) String[] empListToBeRemoved, HttpServletRequest request) {
//        String[] empListToBeRemoved = request.getParameterValues("empList");
        Employee emp = new Employee();
        for (int i = 0; i <= empListToBeRemoved.length; i++) {
            if (!empListToBeRemoved[i].equals("0")) {
                emp.setEmpIdEnc(empListToBeRemoved[i]);
                try {
                    List<OrgStructureTagging> list = orgStructureTaggingDAO.findEmpByProperty("EMP_ID", emp.getEmpId());
                    for (OrgStructureTagging structureTagging : list) {
                        System.out.println("all ids of employees" + structureTagging.getEmployee().getName());
                        orgStructureTaggingDAO.delete(structureTagging);
                    }
                    return true;
                } catch (Exception e) {
                    e.printStackTrace();
                    log.error("Error Occured While updating the field");
                    return false;
                }
            }
        }
        return false;
    }

ЭТО КАК МОЖЕТ СМОТРЕТЬ МОЙ КОД JSP:

       <table> 
            <thead>
                 <tr class="">
                   <th width="10%"  >
<label>Select All  <input type="checkbox" id="ckbCheckAll" value="0"> 
</label>
</th>
</thead>
 <tbody>
   <tr>
<td style="text-align: center">
<label> <input type="checkbox" class="checkBoxClass" value="${tl.employee.empIdEnc}">
</label>
</td>
</tr>
</tbody>

То, что я обнаружил, значение по умолчанию для корневого флажка <label>Select All <input type="checkbox" id="ckbCheckAll" value="0"> также передается через массив, поэтому я установил его значение по умолчанию "0", поэтому я могу легко пропустить значение корневого флажка, но все же оно становится проблематичным.Пожалуйста, предложите мне лучшее решение.

1 Ответ

0 голосов
/ 24 января 2019

Только одна запись удаляется, так как ваш метод возвращается рано. Чтобы устранить эту проблему, создайте логическую переменную для возврата элемента управления метода вместо возврата true / false и уменьшения на 1 от длины, чтобы избежать ArrayIndexOutOfBoundsException. Вот фрагмент кода, который может вам помочь

@RequestMapping(value = "/delete_all", method = RequestMethod.POST)
@ResponseBody
public boolean deleteMultipleRecord(@RequestParam(value = "empList[]", required = false) String[] empListToBeRemoved, HttpServletRequest request) {
    Employee emp = new Employee();
    for (int i = 0; i <= empListToBeRemoved.length-1; i++) {
        boolean result = false;
        if (!empListToBeRemoved[i].equals("0")) {
            emp.setEmpIdEnc(empListToBeRemoved[i]);
            try {
                List<OrgStructureTagging> list = orgStructureTaggingDAO.findEmpByProperty("EMP_ID", emp.getEmpId());
                for (OrgStructureTagging structureTagging : list) {
                    System.out.println("all ids of employees" + structureTagging.getEmployee().getName());
                    orgStructureTaggingDAO.delete(structureTagging);
                }
                result = true;
            } catch (Exception e) {
                e.printStackTrace();
                log.error("Error Occured While updating the field");
                result = false;
            }
        }
    }
    return result;
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...