我有以下代码片段,并且未触发标准客户端 html 验证。如何触发标准验证并在有效时调用该操作。
<h:form>
<h:inputText type="text" value="#{myBean.value}">
<f:passThroughAttribute name="required" value="required" />
</h:inputText>
<h:commandButton value="submit" type="submit" action="#{myBean.save}">
<f:ajax execute="@form" render="@form" />
</h:commandButton>
</h:from>
如果没有 ajax,将触发客户端验证,如果输入为空,则不会发送表单。
我怎样才能用ajax达到这个目的?