7
स्काला में निहित समझ
मैं स्काला प्लेफ्रामवर्क ट्यूटोरियल के माध्यम से अपना रास्ता बना रहा था और मुझे कोड के इस स्निपेट से पता चला, जिसने मुझे हैरान कर दिया था: def newTask = Action { implicit request => taskForm.bindFromRequest.fold( errors => BadRequest(views.html.index(Task.all(), errors)), label => { Task.create(label) Redirect(routes.Application.tasks()) } ) } इसलिए मैंने …