当验证失败时,我想通过忽略第二次提交中的无效字段来提交表单。孤立的问题如下:
我的表单包含两个必需的输入foo
和bar
,这些输入还在h:hiddenInput
和名为MyValidator
的自定义验证程序中进行了验证,例如确保不等式的输入。如果MyValidator
失败,我会通过仅处理输入h:hiddenInput
和foo
来呈现另一个提交按钮,该按钮会跳过bar
及其验证程序。
<h:form>
<h:panelGroup layout="block" id="fooBarWrapper">
<p:inputText value="#{myControl.foo}" binding="#{foo}" required="true"/>
<p:inputText value="#{myControl.bar}" binding="#{bar}" required="true"/>
</h:panelGroup>
<h:inputHidden validator="myValidator" binding="#{myValidation}">
<f:attribute name="foo" value="#{foo}"/>
<f:attribute name="bar" value="#{bar}"/>
</h:inputHidden>
<p:messages/>
<p:commandButton action="#{myControl.doSomething()}" value="Do something"
process="@form" update="@form"
rendered="#{myValidation.valid}"/>
<p:commandButton action="#{myControl.doAnotherThing()}" value="Do another thing"
process="fooBarWrapper" update="@form"
rendered="#{not myValidation.valid}"
oncomplete="if (!args.validationFailed) { console.log('valid'); }"/>
</h:form>
带
@Named
@FacesValidator("myValidator")
public class MyValidator implements Validator {
@Override
public void validate(FacesContext ctx, UIComponent component, Object value) throws ValidatorException {
String foo = (String) ((UIInput) component.getAttributes().get("foo")).getValue();
String bar = (String) ((UIInput) component.getAttributes().get("bar")).getValue();
if (foo != null && bar != null && foo.equals(bar)) {
throw new ValidatorException(new FacesMessage(FacesMessage.SEVERITY_ERROR, "Foo and bar must not be equal", ""));
}
}
}
和
@Named
@ViewScoped
public class MyControl implements Serializable {
private String foo;
private String bar;
public void doSomething() {
FacesContext.getCurrentInstance().addMessage(null, new FacesMessage("Did something"));
}
public void doAnotherThing() {
FacesContext.getCurrentInstance().addMessage(null, new FacesMessage("Did another thing"));
}
...
}
但是,虽然现在已按预期跳过MyValidator
,但未调用第二个按钮的操作。有趣的是,PrimeFaces args.validationFailed
表示验证成功。
任何人都可以解释一下,为什么没有调用#{myControl.doAnotherThing()}
,虽然没有验证似乎失败了?
答案 0 :(得分:1)
问题与h:inputHidden的验证器无关。 你可以进一步删除你的例子。
<h:form>
<h:panelGroup layout="block" id="fooBarWrapper">
<p:inputText value="#{myControl.foo}"/>
<p:inputText value="#{myControl.bar}"/>
</h:panelGroup>
<p:messages/>
<p:commandButton action="#{myControl.doAnotherThing()}" value="Do another thing" process="fooBarWrapper" update="@form"/>
</h:form>
此示例也不起作用。 要完成这项工作,你还必须处理commandButton。
<p:commandButton action="#{myControl.doAnotherThing()}" value="Do another thing" process="@this fooBarWrapper" update="@form"/>