pathTokens match {
case List("post") => ("post", "index")
case List("search") => ("search", "index")
case List() => ("home", "index")
} match {
case (controller, action) => loadController(http, controller, action)
case _ => null
}
Tôi muốn trận đấu tiếp giáp. nhưng có lỗi biên dịch. :(Scala contiguous match
(pathTokens match {
case List("post") => ("post", "index")
case List("search") => ("search", "index")
case List() => ("home", "index")
}) match {
case (controller, action) => loadController(http, controller, action)
case _ => null
}
Khi tôi quấn trận đấu đầu tiên với parenparenthesis, nó làm việc ok Tại sao tôi cần ngoặc ở đây
Cảm ơn bạn đã bình luận hữu ích. – drypot