基本上是标题。我想知道如何在 Vapor 3 中使用url查询参数。我似乎在文档上找不到任何内容。

例如/objects?fancy=true,如何访问fancy参数。

最佳答案

您可以执行以下操作:

guard let fancy = req.query[Bool.self, at: "fancy"] else {
    throw Abort(.badRequest)
}

或者如果是可选的,你可以做
if let qFancy = try? req.query.get(Bool.self, at: "fancy") {
    fancy = qFancy
} else {
    fancy = false
}

10-08 17:54