No URL path binder found for type Option[Long]. Try to implement an implicit PathBindable for this type

3.6k views Asked by At
GET /home/:id/delete        controllers.Application.delete(id:Option[Long])

I am working on play 2.1 framework with scala and this error occurs . how to solve it

1

There are 1 answers

0
Stephen On

Please remove Option[] like below url

GET /home/:id/delete        controllers.Application.delete(id:Long)