我試圖更改驗證消息的文本顯示在遊戲框架創建播放框架表單驗證消息
的文字,如「必需的」我的形式,「數字','Date(yyyy ...)'會根據綁定到表單域的屬性的類型自動顯示。
@implicitFieldConstructor = @{
FieldConstructor(twitterBootstrapInput.f)
}
<fieldset>
@inputText(productForm("id"), '_label -> "Product id")
@inputText(productForm("info.name"), '_label -> "Name", 'placeholder -> "Product Name")
@inputText(productForm("info.code"), '_label -> "Code")
@inputText(productForm("info.weight"), '_label -> "Weight")
@inputDate(productForm("info.dateAdded"), '_label -> "Date Added")
</fieldset>
這一切都很不錯,但我不知道如何改變它。是否有可能通過使用@inputText
元素的某些屬性,例如。像'_helpinline -> "Please enter the name"
(我確實尋找這樣的水手,但找不到任何東西),也許有其他方式的人使用?
這些消息顯示在Twitter引導help-inline
樣式元素中。
你知道在任何機會你可以找到默認本地化消息鍵列表(如約束。必需)? – Kris
他們也在源。在這種情況下,它在https://github.com/playframework/playframework/blob/master/framework/src/play/src/main/resources/messages – NIA