November 2018
Intermediate to advanced
404 pages
10h 16m
English
This section will show you how to add more routes in Vapor:
. . .router.get("greet", String.parameter) { req -> String in // [1] let guest = try req.parameters.next(String.self) // [2] return "Hi \(guest), greetings! Thanks for visiting us." // [3]}. . .Read now
Unlock full access