From spray.io documentation page:
color
extract value of parameter “color” as String
color.?
extract optional value of parameter “color” as Option[String]
amount.as[Int]
extract value of parameter “amount” as Int, you need a matching Deserializer in scope for that to work (see also Unmarshalling)
So how can I parse optional Int
value? Something like amount.?.as[Int]
doesn't seem to work.
You can see the details here: https://github.com/spray/spray/blob/76ab89c25ce6d4ff2c4b286efcc92ee02ced6eff/spray-routing/src/main/scala/spray/routing/directives/NameReceptacle.scala
The straightforward syntax would be
Unfortunately there is no syntactic sugar to create a
NameRecaptable
for an option type directly, but you can do it in two steps:?
is an alias forNameRecaptable[A].as[Option[A]]
, so you can use the following code (note the postfix operator syntax):