我正在使用带有 ScalaQuery 0.9.5 的 Play 2.0.2。
我有以下简单的模型代码:
case class Task(id: Long, name: String)
object Task extends Table[(Long, String)]("task") {
lazy val database = Database.forDataSource(DB.getDataSource())
def id = column[Long]("id", O PrimaryKey, O AutoInc)
def name = column[String]("name", O NotNull)
def create(task: Task) = database.withSession {
implicit db: Session => {
Task.name insert(task.name)
}
}
以下代码用于处理表单提交:
val taskForm: Form[Task] = Form(
mapping(
"name" -> nonEmptyText
) {
(name) => Task(-1L, name)
} {
task => Some(task.name)
}
)
def newTask = Action {
implicit request =>
taskForm.bindFromRequest.fold(
errors => BadRequest(views.html.index(Task.all, errors)),
task => {
Task.create(task)
Redirect(routes.Application.tasks())
}
)
}
几个问题:
1)有没有比传入常量更好的方法来处理瞬态主键值?类似于 Anorm 的 NotAssigned 的东西?
2) 将“id”->ignore(-1L) 添加到表单映射并使用任务的提取器函数会更好吗?
3) 是否应该在没有 id 字段的情况下定义案例类?