博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
form 提交多个对象及springMVC接收
阅读量:6112 次
发布时间:2019-06-21

本文共 862 字,大约阅读时间需要 2 分钟。

hot3.png

var priceSignList = new Array();

        $("#appExponentPriceSignEditForm tr").each(function() {
            var that = this;
            var orderItemObj = new Object();
            $(that).find("select,input").each(function() {
                var name = $(this).attr("name");
                orderItemObj[name] = $(this).val();
            });
            priceSignList.push(orderItemObj);
        });

        $.ajax({

            url: '${path}/appExponentPriceSign/edit',
            method: "POST",
            dataType: "json",
            contentType: "application/json;charset=utf-8",
            async: false,
            data:JSON.stringify(priceSignList),
            
            success: function(data) {
                if(data.success) {
                    $.messager.alert('提示', data.msg, 'info')
                    parent.$.modalDialog.openner_dataGrid.datagrid('reload')
                    parent.$.modalDialog.handler.dialog('close');
                } else {
                    $.messager.alert('错误', data.msg, 'error')
                }
            }
        });

controller 接收

public Object edit(@RequestBody List<AppExponentPriceSign> priceSignList)

 

转载于:https://my.oschina.net/fyliujj/blog/1859870

你可能感兴趣的文章
PHP经典算法题
查看>>
LeetCode 404 Sum of Left Leaves
查看>>
醋泡大蒜有什么功效
查看>>
hdu 5115(2014北京—dp)
查看>>
数据结构中常见的树(BST二叉搜索树、AVL平衡二叉树、RBT红黑树、B-树、B+树、B*树)...
查看>>
PHP读取日志里数据方法理解
查看>>
第五十七篇、AVAssetReader和AVAssetWrite 对视频进行编码
查看>>
Vivado增量式编译
查看>>
一个很好的幻灯片效果的jquery插件--kinMaxShow
查看>>
微信支付签名配置正确,但返回-1,调不出支付界面(有的手机能调起,有的不能)...
查看>>
第二周例行报告
查看>>
Spring学习(16)--- 基于Java类的配置Bean 之 基于泛型的自动装配(spring4新增)...
查看>>
实验八 sqlite数据库操作
查看>>
四种简单的排序算法(转)
查看>>
Quartz2D之着色器使用初步
查看>>
多线程条件
查看>>
Git [remote rejected] xxxx->xxxx <no such ref>修复了推送分支的错误
查看>>
Porter/Duff,图片加遮罩setColorFilter
查看>>
黄聪:VMware安装Ubuntu10.10【图解】转
查看>>
Centos 6.x 升级openssh版本
查看>>