如何自定義驗證失敗時出現的驗證消息?如何自定義JSF驗證錯誤消息
這裏是我的代碼:
<h:form>
<p><h:inputText
id="userNo"
title="Type a number from 0 to 10:">
<f:validateLongRange
minimum="3"
maximum="6"/>
</h:inputText>
<h:commandButton id="submit" value="Submit"
action="response"/>
</p>
<h:message showSummary="true" showDetail="false"
id="errors1"
for="userNo"/>
</h:form>
目前的消息是這樣的:
j_idt10:userNo: Validation Error: Specified attribute is not between the expected values of 3 and 6.
沒有特別人性化。
我很驚訝沒有辦法在屬性或其他內容中設置消息「on-the-fly」。呃... – Eleeist
還有,編輯我的答案... – Daniel
這絕對是更有意義。但是如果我有多個驗證器附加到輸入中,並且我想定製它們中的每一個的消息呢? – Eleeist