我正在尝试使用可选列表作为查询参数定义路由
GET /places controllers.Application.query(filter: Option[Seq[Int]])
但收到此错误
conf/routes - PlayException: Compilation error [`)' expected but `]' found]
我知道 Play 2 处理Option
得很好,我希望它传递Seq
给我的 custom QueryStringBindable
,如何实现这一点?