标签: playframework-2.0
我写了这个很好的问题:
How to create a custom validator in Play Framework 2.0?
关键是,该解决方案适用于Java Play API。
如何在Scala中编写自定义验证程序?
答案 0 :(得分:1)
使用Mapping上的verifying方法。
verifying
例如:
Form("foo" -> text.verifying{ txt => txt.startsWith("bar") })