前端页面:

 $.ajax({
            url: url,
            data: JSON.stringify(data),
            dataType: "json",
            contentType: "application/json",
            type: "POST",
            success: function (data) {
                if(data.returnCode == "000000"){
                    alert("配置成功!");
                    esst.popups_close(obj);
                }else{
                    alert("配置失败!");
                }
            }
        });

 

 

 

后台接收:

    @RequestMapping(value = "update",method = RequestMethod.POST)
    @ResponseBody
    public ReturnBean<?> update(@RequestBody List<Entity> list, HttpServletRequest request, HttpServletResponse response) {

    }

 

相关文章:

  • 2022-12-23
  • 2021-10-12
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-26
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-12
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案