ajax传输数组类型的参数


$.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;
    }


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM