scala中是否只有数字文本的输入?
对于我使用的文字:@helper.inputText(field)
对于数字?我该怎么用?如何在scala中使用带输入的掩码?
我已经阅读了输入文档,但我没有找到任何东西。
答案 0 :(得分:-1)
只需添加'type -> "number"
例如:
@helper.inputText(
yourForm("yourFormField"),
'_label ->"Enter a number",
'type -> "number"
)