gpt4 book ai didi

forms - 如何使用 Play 正确验证表单!在斯卡拉?

转载 作者:行者123 更新时间:2023-12-03 04:08:54 26 4
gpt4 key购买 nike

我是 Play! 的新手,我正在尝试将现有网站从 cakePHP 迁移到 Play!。

我面临的问题是关于表单验证的。

我定义了一个案例类 User,代表我网站的用户:

case class User(
val id: Long,
val username: String,
val password: String,
val email: String
val created: Date)

(还有一些字段,但这些足以解释我的问题)

我希望我的用户能够使用表单在我的网站上创建帐户,并且我希望 Play! 验证此表单。

因此,我创建了以下操作:

def register = Action {
implicit request =>

val userForm = Form(
mapping(
"id" -> longNumber,
"username" -> nonEmptyText(8),
"password" -> nonEmptyText(5),
"email" -> email,
"created" -> date)(User.apply)(User.unapply))

val processedForm = userForm.bindFromRequest
processedForm.fold(hasErrors => BadRequest("Invalid submission"), success => {
Ok("Account registered.")
})
}

显然,我不希望用户在表单中自己填写 id 或创建日期。所以我的问题是:我应该做什么?

我是否应该定义一个新的“转换模型”,仅包含表单中实际提供给用户的字段,并在将其插入数据库之前将该中间模型转换为完整的模型?

也就是说,将我的操作替换为类似的内容:

def register = Action {
implicit request =>

case class UserRegister(
username: String,
password: String,
email: String)

val userForm = Form(
mapping(
"username" -> nonEmptyText(8),
"password" -> nonEmptyText(8),
"email" -> email)(UserRegister.apply)(UserRegister.unapply)

val processedForm = userForm.bindFromRequest
processedForm.fold(hasErrors => BadRequest("Invalid submission"), success => {
val user = User(nextID, success.username, success.password, success.email, new Date())
// Register the user...
Ok("Account created")
}

或者还有另一种更干净的方式来做我想做的事吗?

我已经阅读了许多教程和“Play for Scala”一书,但在我发现的唯一示例中,模型完全由表单填充......我真的很喜欢 Play!到目前为止,但看起来文档经常缺乏示例......

非常感谢您的回答!

最佳答案

您有几个选择:

首先,您可以将 idcreated 字段设置为 Option[Long]Option[Date]分别。然后使用如下映射:

val userForm = Form(
mapping(
"id" -> optional(longNumber),
"username" -> nonEmptyText(8),
"password" -> nonEmptyText(5),
"email" -> email,
"created" -> optional(date)
)(User.apply)(User.unapply)
)

我认为这是合乎逻辑的,因为具有 None id 的 User 表明它尚未保存。当您想要使用相同的表单映射来更新现有记录时,这很有效。

或者,您可以将ignored映射与一些任意占位符数据一起使用:

val userForm = Form(
mapping(
"id" -> ignored(-1L),
"username" -> nonEmptyText(8),
"password" -> nonEmptyText(5),
"email" -> email,
"created" -> ignored(new Date)
)(User.apply)(User.unapply)
)

当重用表单进行更新操作时,这不太好!

最后,不要忘记您的表单映射是由函数绑定(bind)/填充的,这些函数分别将元组转换为对象,将对象转换为元组。使用案例类 User.applyUser.unapply 方法只是一个方便的约定,因为它们就是这样做的。您可以在 User 对象上编写替代工厂方法来处理表单实例化:

object User {
def formApply(username: String, password: String, email: String): User =
new User(-1L, username, password, email, new Date)

def formUnapply(user: User): Option[(String,String,String)] =
Some((user.username, user.password, user.email))
}

然后在 Form 对象中使用这些:

val userForm = Form(
mapping(
"username" -> nonEmptyText(8),
"password" -> nonEmptyText(5),
"email" -> email
)(User.formApply)(User.formUnapply)
)

此外,值得注意的是,Scala 表单文档在 2.2.1 中将会变得更好(事实上它可能已经推出 here )。

关于forms - 如何使用 Play 正确验证表单!在斯卡拉?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19622365/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com