作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 Java 类:
public class User {
public String name;
public String email;
}
除了在 Scala 中创建另一个案例类或使用 tuple
,我可以做类似的事情吗
Form<User> form = Form.form(User.class)
上面的代码在 Play Java 中是可能的,但在 Scala 中是不可能的
最佳答案
.class
不是 Scala 中的关键字。试试 classOf[User]
。
即
val form = Form.form(classOf[User])
关于java - 如何在 Play 中使用 Java 类构建 Scala Form,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18065355/
我是一名优秀的程序员,十分优秀!