7
Hiểu ngầm trong Scala
Tôi đang thực hiện theo hướng dẫn của Scala playframework và tôi đã bắt gặp đoạn mã này khiến tôi bối rối: def newTask = Action { implicit request => taskForm.bindFromRequest.fold( errors => BadRequest(views.html.index(Task.all(), errors)), label => { Task.create(label) Redirect(routes.Application.tasks()) } ) } Vì vậy, tôi quyết định điều tra …