Scala/Play/Squeryl Retrieve multiple params
问题 I have the following url : http://localhost/api/books/?bookId=21&bookId=62?authorId=2 I want to retrieve all the bookId values with Scala and then use Squeryl to do a fetch in a the database. I'm using the PlayFrameWork as the WebServer, so here's my code : val params = request.queryString.map { case (k, v) => k -> v(0) } // Retrieve only one the first occurence of a param So params.get("bookId") will only get the last value in the bookId params. e-g : 62 . To retrieve all my bookId params i