$.ajax({
               type:"post",
               traditional: true,
               data:{arr:arr},
               url:"${pageContext.request.contextPath}/customer/deleteById",
               dataType:"json",
               success: function (msg) {
                 if(msg.code==200){
                     window.location.href="${pageContext.request.contextPath}/customer/findAll";
                 }else{
                     alert("删除失败");
                     window.location.href="${pageContext.request.contextPath}/customer/findAll";
                 }


               }


控制层代码:
@RequestMapping("deleteById")
    @ResponseBody
    public Map<String ,Object> deleteById(String [] arr){
        Map<String,Object> map=new HashMap<>();
        boolean b= customerService.deleteById(arr);
        if(b){
            map.put("code",200);
        }else {
            map.put("code",500);
        }
       return map;
    }

相关文章:

  • 2021-05-16
  • 2022-12-23
  • 2021-10-31
  • 2021-12-27
  • 2021-12-26
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-09-30
  • 2021-09-27
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案