您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
这篇文章主要介绍了springMvc前端如何使用json的方式向后台传递对象数组方法,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。
如下所示:
JSP var vipFee= new Array; //遍历选中的对象 $("#feeList :checkbox:checked").each(function(i){ vipFee.push({"enterpriseSeq":$(this).attr("enterpriseSeq"),"merchNo":$(this).val(),"serviceFee":$(this).attr("fqbFee")}); }); //进行异步 $.ajax({ type:"POST", url: "addVipFeeList", async:false, dataType:"json", contentType:"application/json", // 指定这个协议很重要 data:JSON.stringify(vipFee), success:function(data){ //判断是否是成功的返回的 if(data.success===true){ $("#feeList :checkbox:checked").each(function(i){ var FQBFee = parseFloat($(this).parent().siblings("td").find("input[name='fqbFee']").val()); $(this).parent().siblings("td").find("input").attr("readonly","readonly"); $(this).parent().siblings("td").find("input[name='fqbFee']").val(FQBFee.toFixed(3)); //将“取消定价”,进行显示 $(this).parent().siblings("td").find("a[id='cancelA']").show(); //将“确定定价”进行隐藏 $(this).parent().siblings("td").find("a[id='relateA']").hide(); //取消掉选中的状态 $(this).prop("checked", false); }); } } }); Controller @RequestMapping(value = Constants.ADMIN + "/addVipFeeList",method=RequestMethod.POST) @ResponseBody public Map<String,Object> addVipFeeList(@RequestBody List<VipFee> vipFee){ Map<String,Object> map=new HashMap<String,Object>(); try { //判断对象是否为空 if (vipFee!=null&&vipFee.size()>0) { //进行遍历并赋值 for (VipFee v:vipFee) { v.setReplacePrdId(Constants.PRODUCT_TYPE_FQB); } } //进行添加 vipFeeService.addVipFeeList(vipFee); map.put("success", true); } catch (CoreException e) { map.put("success", false); log.error(e.getCode(),e); map.put("errorMsg", e.getCode()); } return map; }
感谢你能够认真阅读完这篇文章,希望小编分享的“springMvc前端如何使用json的方式向后台传递对象数组方法”这篇文章对大家有帮助,同时也希望大家多多支持亿速云,关注亿速云行业资讯频道,更多相关知识等着你来学习!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。