我有一个index.jsp
我正在调用一个动作类TestAction
(点击超链接),它有方法(显示)从数据库加载组合框的值以及执行方法,以显示在页面test.jsp
。
在test.jsp
上,我有一些输入字段和组合框。单击test.jsp上的按钮我想验证输入字段,但问题是当我来自index.jsp时,那个时候只有验证正在进行,test.jsp
会打开并显示错误消息。
我尝试使用<ActionName>-validator.xml
进行客户端验证以及通过覆盖验证方法使用服务器端验证。如何在index.jsp上单击超链接时避免验证,并且可以在按钮上单击test.jsp进行验证
这是我的代码:
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@ taglib prefix="s" uri="/struts-tags"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Data</title>
</head>
<body>
<s:form>
<a href="<s:url action="displayAction.action"/>" >Display Data</a><br>
</s:form>
</body>
</html>
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@ taglib prefix="s" uri="/struts-tags"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Data</title>
<script type="text/javascript">
function openPopUp(){
document.getElementById('testForm').setAttribute('target', '_blank');
document.getElementById('testForm').setAttribute('action', 'testAction.action');
}
</script>
<s:head theme="ajax" debug="true"/>
</head>
<body bgcolor="white">
<s:form validate="true" id="testForm">
<div>
<s:actionerror/>
</div>
<table>
//Mapping of data from database
</table>
<s:submit id="submitButton" value="Display Chart" align="center" onclick="openPopUp();"/>
</s:form>
</body>
</html>
<action name="testAction"
class="testAction"
method="execute">
<result name="success" type="chart">
<param name="value">chart</param>
<param name="type">jpeg</param>
<param name="width">600</param>
<param name="height">400</param>
</result>
</action>
<action name="displayAction"
class="testAction"
method="display">
<result name="success">test.jsp</result>
</action>
答案 0 :(得分:2)
如果您不想验证某些操作,只需在操作方法上添加@SkipValidation
注释即可。这个答案shows how to use this annotation,以及此答案shows an alternative approach。
答案 1 :(得分:1)
我尝试使用
-validator.xml
进行客户端验证,并通过覆盖验证方法使用服务器端验证。
它们都是服务器端验证,都是由验证拦截器执行的,都是can be tweaked to be run for an action alias only。
然后使用struts.xml:
<action name="testAction"
class="testAction"
method="execute">
...
</action>
<action name="displayAction"
class="testAction"
method="display">
...
</action>
假设您只想验证第一个操作,可以执行以下操作:
使用testAction-testAction-validation.xml
(操作名称+操作别名),而不只是testAction-validation.xml
;
使用validateTestAction(){}
方法而非validate()
。
另外take a look at how the whole thing works,因为你没有定义任何INPUT结果,这是可疑的:)