如何将验证错误显示为列表

时间:2013-04-11 01:26:49

标签: struts2

我在jsp文件中有一个简单的登录表单:

     <s:form
        action="conexion" validate="true" theme="xhtml" target="formError">
        <s:textfield name="username" key="profile.rut" />
        <s:password name="password" key="profile.password" />
        <s:submit id="boton_ingreso"/>
    </s:form>

当渲染时,它会以这种方式呈现:

<form onreset="clearErrorMessages(this);clearErrorLabels(this);" method="post" target="formError" action="/AgendaPlus/conexion.action" onsubmit="return validateForm_conexion();" name="conexion" id="conexion">
<table class="wwFormTable">
<tbody><tr>
<td class="tdLabel"><label class="label" for="conexion_username">RUT:</label></td>
<td><input type="text" id="conexion_username" value="" name="username"></td>
</tr>

<tr>
<td class="tdLabel"><label class="label" for="conexion_password">Contraseña:</label></td>
<td><input type="password" id="conexion_password" name="password"></td>
</tr>

<tr>
<td colspan="2"><div align="right"><input type="submit" value="Submit" id="boton_ingreso" class="ui-button ui-widget ui-state-default ui-corner-all" role="button" aria-disabled="false">
</div></td>
</tr>

</tbody></table></form>

这样,当发生错误时,错误显示在每个字段上方,错误为<tr>标记,因为它是一个表格,我无法将其设置为移动到其他位置。我尝试使用<s:form>标记的目标属性,但它不起作用。

1 个答案:

答案 0 :(得分:0)

请参阅tag docs for fielderror

<s:fielderror />

你知道还有其他主题,你可以创建自己的主题吗?

例如,"simple"主题不会呈现任何表格或错误。

target属性似乎是错误报告的一种奇怪用法。