ctierney
01/15/2019, 6:17 PMget("/foo/{param1}/bar" { ... }
When I access call.parameters["param1"]
the type is String?
. My question is, can this ever actually be null? What situation would lead to a request with no value for param1
being routed to that handler?
(I am avoiding the Locations feature for now since it is marked experimental.)fred.deschenes
01/15/2019, 6:29 PMcall.parameters["foo"]
without having {foo}
anywhere in your route (although it could throw an exception in that case instead of returning a nullable)ctierney
01/15/2019, 6:42 PM