strut2 在action处怎么接jsp:form表中的list参数

问题描述

这是一个修改页面,查询出多条数据进行修改,然后提交,我在action中怎么得到这些修改过数据进行保存到数据库<form enctype="multipart/form-data"action="" method="post"name="addModel" id="addModel" /><!-- 通用信息 --><table align="center" width="95%"><tbody><tr><td><table width="95%" border="1" align="left" cellpadding="0"cellspacing="0" bordercolor="#DAF3EE"style="border-collapse: collapse"><s:if test="null != #request.listSchemeNameVo"><tr><s:iterator value="#request.listSchemeNameVo" status="statu"><td width="4%" align="right" class="td13"><s:property value="displayname"/> <span class="redfont">*</span></td><td width="10%" class="td12" colspan=1><input type="text" name="propertyvalue" value='<s:property value="propertyvalue"/>'/></td><s:if test="#statu.modulus(2)==0"></tr><tr></s:if></s:iterator></tr></s:if></table></td></tr></tbody></table><div class="button-div"><input value="确定" class="button" type="button" style="CURSOR: hand" id="subbut" onClick="submitForm('${operate}');"><input value=" 重置 " class="button" type="reset" style="CURSOR: hand" id="initbut"><input value=" 返回 " class="button" type="button" style="CURSOR: hand" id="reback" onClick="if (window.opener) window.close(); else history.back(-1);"></div></form>

解决方案

private obj[] itsget set

时间: 2024-10-31 13:48:02

strut2 在action处怎么接jsp:form表中的list参数的相关文章

jsp form表单submit后 request.getParameter获取的值为null

问题描述 jsp form表单submit后 request.getParameter获取的值为null public class ReverseString{ public static String reverse(String s){ char []c=new char[s.length()]; for(int i=0;i<s.length();i++) c[i]=s.charAt(s.length()-1-i); return String.valueOf(c); } public st

js提交form表单,并传递参数的实现方法_javascript技巧

//增加的函数 begin function queryFun(){ var type = $("#artType").val(); var hasInputed = "1";//表示输入了要搜索 的信息 if($("#query").val()=="选手姓名/编号"){ //表示没有输入要搜索的值 hasInputed="0"; } document.getElementById("queryF

PHP判断FORM表单或URL参数来的数据是否为整数的方法_php技巧

PHP判断FORM表单或URL参数来的数据是否为整数,is_int函数对于FORM表单或URL参数过来的数据是没有办法判断是否是整数的,因为FORM过来的是字符串. 用is_numeric可以判断是否为数字类型,再判断是否有小数点就可以判断是不是整数了 if(!is_numeric($page)||strpos($page,".")!==false){ echo "不是整数"; }else{ echo "是整数"; } 有时候我们需要判断id是否

关于jsp form表单提交图片的疑问

问题描述 一.用form表单提交带图片的表单,怎样让跳转到action后操作成功失败返回相应提示并不跳转页面二.如果用ajax来操作的话,怎么处理inputtype="file"这种控制来大神帮忙解答下,谢谢. 解决方案 解决方案二:jquery有个form插件,就是表单以ajax方式提交的.你也可以用easyui中的表单以ajax方式提交.你也可以自己写个类似的表单以ajax方式提交,页面放个隐藏的iframe,表单提交后转发目标到iframe.解决方案三:跳转方法前加上return

jsp form表单提交到servlet

问题描述 在servelt类里可以获得表单提交过来,提交的是什么方法吗?(也就是找到servlet类里的某个方法的那个方法) 解决方案 综合下大家的想法:1.0 如果是 servlet get,post,input,delete这样的方法 请参考 引用不确定你的意思.你是说servlet将提交过到的交给那个方法处理? servlet中大致包括get,post,input,delete等方法,由前端传递方式决定,如form的type:method=post即调用post方法 2.0 如果你是不知道

form表单action提交问题详解

form 提交action中参数无效 页面通过表单(form)想服务器提交数据的时候有两种形式,一个是POST,另一个是GET.两种的一个区别是GET会直接把数据附加在url的后面,而POST发送的数据放置在http包中.form的action属性就是提交数据的url地址,method属性可以指定是GET或POST. 需要注意的是如果采用GET方式,那么action url中参数都会被丢弃,提交时候只会把form中的数据拼接在url向服务器提交:但是POST的方式则不会这样,它会按照action

跳转路径-急求解决,jsp页面中循环生成的form表单,action路径错误

问题描述 急求解决,jsp页面中循环生成的form表单,action路径错误 在jsp页面中用循环生成的form表单,为什么action不是想要的呢,代码贴在下面了 reply=(Map)request.getAttribute("REPLY"); while(rsComment.next()) { // 评论编号 String CId = rsComment.getString("CId"); // 评论人 String name=rsComment.getStr

在JSP文件中的同一个form表单有多个用来提交表单值的按钮,用户可以通过不同的按钮提交表单,需要调用Action中的不同处理方法,该怎么使用动态方法调用?

问题描述 Action 问题补充:是struts2 怎么修改jsP动态form的action名称呀? 解决方案 function formSubmit(){document.form1.method="post"; var url ="<%=request.getContextPath()%>/hrt/chartSichuan.do?method=recordList"; document.form1.action= url; document.form

spring mvc-springmvc的form:form标签中不能用JSP表达式?

问题描述 springmvc的form:form标签中不能用JSP表达式? 我这么写(一个普通的form标签)可以解析 form action="<%=request.getContextPath() %>/index.html"> 这么写就不对, form:form action="<%=request.getContextPath() %>/student/studentModifyFinished.act"> 解决方案 Sp